Added tutorials of the hibernate-release 5.2.18.Final
[hibernate4-maven-plugin] / src / it / tutorials-4.3.9 / schema-basic.sql
diff --git a/src/it/tutorials-4.3.9/schema-basic.sql b/src/it/tutorials-4.3.9/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)
+    );