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