I have a domain object with the following property:
@Digits(integer = 8, fraction = 0)
private Integer instalation;
when i run the application and the table is created the field is defined as:
INSTALATION NUMBER(10,0)
but what i really need is:
INSTALATION NUMBER(8,0)
Any idea ? What i am missing ?


Reply With Quote