{
final Ejb3Configuration cfg = new Ejb3Configuration();
cfg.configure(persistenceUnitName, configOverwrites);
final SchemaExport schemaExport = new SchemaExport(cfg.getHibernateConfiguration());
schemaExport.setOutputFile("schema.sql");
schemaExport.drop(true, true);
}
@SuppressWarnings("deprecation")
@Override
public Connection getConnection(EntityManager em)