Added script to check outcome of the hibernate-tutorials
[hibernate4-maven-plugin] / src / it / tutorials / schema-annotations.sql
diff --git a/src/it/tutorials/schema-annotations.sql b/src/it/tutorials/schema-annotations.sql
new file mode 100644 (file)
index 0000000..8448e8a
--- /dev/null
@@ -0,0 +1,9 @@
+
+    drop table EVENTS if exists;
+
+    create table EVENTS (
+        id bigint not null,
+        EVENT_DATE timestamp,
+        title varchar(255),
+        primary key (id)
+    );