In JPA, if a column isn't nullable, it must have a default value. So if I say
@Column(nullable=false)
Boolean isExpired;
Would it default
to true
or false
? What if it's an Integer
or a Long
or a String
? Is there any way to specify this?