I have an application with Spring 3 and Hibernate 3. It works at this point.
It uses hbm.xml files to map java classes to tables. and on every start it creates empty tables (HSQLDB).
Now I added a class classX with Enum field. The problem is that on start application creates all tables, except classX's one.
Do you have any ideas how to solve this quick (and without annotations)
thank you