Added script to check outcome of the hibernate-tutorials
[hibernate4-maven-plugin] / src / it / tutorials / schema-osgi-unmanaged-jpa.sql
diff --git a/src/it/tutorials/schema-osgi-unmanaged-jpa.sql b/src/it/tutorials/schema-osgi-unmanaged-jpa.sql
new file mode 100644 (file)
index 0000000..66738bb
--- /dev/null
@@ -0,0 +1,8 @@
+
+    drop table DataPoint if exists;
+
+    create table DataPoint (
+        id bigint generated by default as identity,
+        name varchar(255),
+        primary key (id)
+    );