I use Hibernate (JPA2) hibernate.hbm2ddl.auto=updatefor testing and hibernate.hbm2ddl.auto=validatefor production.
I want to do this by expanding the generated schema with an additional table (which does not map to the entity) so that this table is generated for tests and verified for production.
Is this possible, and how?
Ralph source
share