X-Git-Url: http://juplo.de/gitweb/?p=hibernate4-maven-plugin;a=blobdiff_plain;f=src%2Fit%2Fhib-test%2Fpostgres.sql;fp=src%2Fit%2Fhib-test%2Fpostgres.sql;h=875da31e6d117fd6de139657713f33542db1f91d;hp=0000000000000000000000000000000000000000;hb=f18f820198878cddcea8b98c2a5e0c9843b923d2;hpb=4bb462610138332087d808a62c84a0c9776b24cc diff --git a/src/it/hib-test/postgres.sql b/src/it/hib-test/postgres.sql new file mode 100644 index 00000000..875da31e --- /dev/null +++ b/src/it/hib-test/postgres.sql @@ -0,0 +1,12 @@ + + drop table if exists test_simple cascade; + + create table test_simple ( + uuid varchar(36) not null, + content text, + externalid varchar(148), + sources varchar(255), + primary key (uuid) + ); + + create index idx_test_simple_tuple on test_simple (sources, uuid);