@Column(name = "is_active") private boolean isActive;
column "is_active" is of type bit but expression is of type character varying Hint: You will need to rewrite or cast the expression.
@Column(name = "is_active" nullable=false, columnDefinition="TINYINT", length=1)
TrueFalse
Boolean
var
This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)