X-Git-Url: https://juplo.de/gitweb/?p=hibernate4-maven-plugin;a=blobdiff_plain;f=src%2Fit%2Fhib-test%2Fh2.sql;fp=src%2Fit%2Fhib-test%2Fh2.sql;h=9569fa60a45bf23d008fe696f30f9680aad91b46;hp=0000000000000000000000000000000000000000;hb=f18f820198878cddcea8b98c2a5e0c9843b923d2;hpb=4bb462610138332087d808a62c84a0c9776b24cc diff --git a/src/it/hib-test/h2.sql b/src/it/hib-test/h2.sql new file mode 100644 index 00000000..9569fa60 --- /dev/null +++ b/src/it/hib-test/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);