Hello all!
I need to use @UniqueConstraint annotation with glassfish-b48.
I try two variants:
@Entity(name="group_t")
@UniqueConstraint(columnNames="name")
public class Group implements Serializable {
...
and
@Entity(name="group_t")
@UniqueConstraint(columnNames="name")
public class Group implements Serializable {
...
but i don't see result in DDL.
DDL-generation auto with PostgreSQL database.