X-Git-Url: http://juplo.de/gitweb/?p=hibernate4-maven-plugin;a=blobdiff_plain;f=src%2Fit%2Fproperties%2Fh2.sql;fp=src%2Fit%2Fproperties%2Fh2.sql;h=9569fa60a45bf23d008fe696f30f9680aad91b46;hp=0000000000000000000000000000000000000000;hb=74c0dd783b84c90e116f3e7f1c8d6109845ba71f;hpb=d27f7af23c82167e873ce143e50ce9d9a65f5e61 diff --git a/src/it/properties/h2.sql b/src/it/properties/h2.sql new file mode 100644 index 00000000..9569fa60 --- /dev/null +++ b/src/it/properties/h2.sql @@ -0,0 +1,12 @@ + + drop table test_simple if exists; + + create table test_simple ( + uuid varchar(36) not null, + content clob, + externalid varchar(148), + sources varchar(255), + primary key (uuid) + ); + + create index idx_test_simple_tuple on test_simple (sources, uuid);