Added a warning, if a directory, that should be scanned, does not exist
[hibernate4-maven-plugin] / src / it / tutorials / schema-entitymanager.sql
1
2     create table EVENTS (
3         id bigint not null,
4         EVENT_DATE timestamp,
5         title varchar(255),
6         primary key (id)
7     );