Package org.hibernate.dialect.unique
Support for
Dialect
-specific unique constraint definition.- See Also:
UniqueDelegate
-
Interface Summary Interface Description UniqueDelegate Dialect-level delegate responsible for applying unique constraints in DDL. -
Class Summary Class Description AlterTableUniqueDelegate AUniqueDelegate
which usesalter table
commands to create and drop the unique constraint.AlterTableUniqueIndexDelegate AUniqueDelegate
which usescreate unique index
commands when necessary.CreateTableUniqueDelegate AUniqueDelegate
which includes the unique constraint in thecreate table
statement, except when called during schema migration.DefaultUniqueDelegate Deprecated. SkipNullableUniqueDelegate AUniqueDelegate
that only creates unique constraints on not-null columns, and ignores requests for uniqueness for nullable columns.