# Field-level check constraint is not generated
mvn -f hibernate-orm-5/ test
# Log generated
create table FieldLevelCheck (
id bigint not null,
myValue varchar(255),
primary key (id)
)
# Field-level check constraint is generated
mvn -f hibernate-orm-6/ test
# Log generated
create table FieldLevelCheck (
id bigint not null,
myValue varchar(255) check (myValue <> null),
primary key (id)
)