Added tutorials of the hibernate-release 5.0.12.Final
[hibernate4-maven-plugin] / src / it / lob / create.sql
1 create sequence hibernate_sequence start with 1 increment by 1;
2
3     create table MyEntity (
4         id integer not null,
5         status blob,
6         primary key (id)
7     );