Configured the 5.1.17-tutorials as integration-tests for the plugin
[hibernate4-maven-plugin] / src / it / tutorials-5.2.18 / schema-basic.sql
1
2     create table EVENTS (
3         EVENT_ID bigint not null,
4         EVENT_DATE timestamp,
5         title varchar(255),
6         primary key (EVENT_ID)
7     );