package eu.semberal.reminders;
import org.hibernate.cfg.AnnotationConfiguration;
import org.hibernate.cfg.Configuration;
import org.hibernate.tool.hbm2ddl.SchemaExport;
public class JpaSchemaExporter {
public static void main(String[] args) {
Configuration c = new AnnotationConfiguration().configure();
SchemaExport export = new SchemaExport(c);
export.setDelimiter(";");
export.setOutputFile("sql-out.sql");
export.create(false, false);
}
}