Hi, I think there is a small bug in Ebean generated DDL SQL.
when I define an enumerated type in a class Ebean puts a constraint inthe DDL statement for the relative table:constraint ck_null_tipo check (tipo in ('dec','str','data','int')).I have the same enumerated type in more than one class, but thegenerated constraint name remains the same and the DB complains.
Yours sincerely
Claudio
I believe the Enum property was on an embedded bean.
Fixed to always use the current table name being created rather than determine the table name from the current BeanDescriptor.
Fixed in HEAD.