Refined reimplementation of the plugin for Hibernate 5.x
[hibernate4-maven-plugin] / src / it / ignored-dependency / schema.sql
1
2     create sequence hibernate_sequence start 1 increment 1;
3
4     create table MainEntity (
5         id int8 not null,
6         primary key (id)
7     );