Added an explicit test against Hibernate 5.2.18.Final
[hibernate4-maven-plugin] / src / it / hib-test-5.2.18 / postgres.sql
diff --git a/src/it/hib-test-5.2.18/postgres.sql b/src/it/hib-test-5.2.18/postgres.sql
new file mode 100644 (file)
index 0000000..7624731
--- /dev/null
@@ -0,0 +1,10 @@
+
+    create table test_simple (
+        uuid varchar(36) not null,
+        content text,
+        created timestamp,
+        externalid varchar(148),
+        sources varchar(255),
+        primary key (uuid)
+    );
+create index idx_test_simple_tuple on test_simple (sources, uuid);