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
For PostgreSQL you can use boolean in definition
@Column(name = "isDeleted", columnDefinition = "boolean default true") private boolean isDeleted = true;