Hibernate version: Hibernate3
Hi,
I use for development the following entry in my hibernate-configuration:
Code:
<hibernate-configuration>
<session-factory>
...
<property name="hibernate.hbm2ddl.auto">create</property>
<!-- Mapping files. -->
<mapping resource="model/dao/Account.hbm.xml"/>
<mapping source="model/dao/AccountValidationRecord.hbm.xml"/>
...
I find it extremely convenient for my development since it creates my table each time I execute my program. My problem is that I need to merge my program with some quite huge legacy tables which I do not want to recreate. Is there a way that I could use that hibernate.hbm2ddl.auto/create only for some specific tables?
Thanks
Jean