Considering mapping-configuration from persistence.xml and hibernate.cfg.xml
[hibernate4-maven-plugin] / src / it / tutorials / schema-osgi-unmanaged-jpa.sql
1
2     create sequence hibernate_sequence start with 1 increment by 1;
3
4     create table DataPoint (
5         id bigint not null,
6         name varchar(255),
7         primary key (id)
8     );