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? Wh