Verifying generated SQL in integration-test hib-test
[hibernate4-maven-plugin] / src / it / hib-test / oracle.sql
diff --git a/src/it/hib-test/oracle.sql b/src/it/hib-test/oracle.sql
new file mode 100644 (file)
index 0000000..c610b03
--- /dev/null
@@ -0,0 +1,12 @@
+
+    drop table test_simple cascade constraints;
+
+    create table test_simple (
+        uuid varchar2(36 char) not null,
+        content clob,
+        externalid varchar2(148 char),
+        sources varchar2(255 char),
+        primary key (uuid)
+    );
+
+    create index idx_test_simple_tuple on test_simple (sources, uuid);