Configured the 5.2.18-tutorials as integration-tests for the plugin
[hibernate4-maven-plugin] / src / it / tutorials-5.2.18 / schema-basic.sql
diff --git a/src/it/tutorials-5.2.18/schema-basic.sql b/src/it/tutorials-5.2.18/schema-basic.sql
new file mode 100644 (file)
index 0000000..c5e2c0e
--- /dev/null
@@ -0,0 +1,7 @@
+
+    create table EVENTS (
+        EVENT_ID bigint not null,
+        EVENT_DATE timestamp,
+        title varchar(255),
+        primary key (EVENT_ID)
+    );