public FluentFactoryBuilder showSql() {
   return hibernateProperties(
       HibernateProperties.create().showSql(true).formatSql(true).useSqlComments(true));
 }
 public FluentFactoryBuilder h2ConfigForTests() {
   return configForTests().hibernateProperties(HibernateProperties.forH2CreateDrop());
 }