I have an attribute
private boolean include;
I would like to set its default value to true, so that in the database it must display True from d
Maybe will be useful for people who work with Microsoft SQL SERVER
@Column(columnDefinition="bit default 0") private Boolean active;
Possible values: 0 or 1