9569fa60a45bf23d008fe696f30f9680aad91b46
[hibernate4-maven-plugin] / src / it / hib-test / h2.sql
1
2     drop table test_simple if exists;
3
4     create table test_simple (
5         uuid varchar(36) not null,
6         content clob,
7         externalid varchar(148),
8         sources varchar(255),
9         primary key (uuid)
10     );
11
12     create index idx_test_simple_tuple on test_simple (sources, uuid);