I am using SEAM 2/Hibernate along with PostgreSQL 9 database. I have the following table
Active Band =========== active_band_id serial active_band_user text acti
In a more modern syntax, it would be :
@Table( name="ACTIVE_BAND", uniqueConstraints = [UniqueConstraint( columnNames = ["active_band_user", "active_band_date"] )] )