Fixed the akquisition of a database-connection, if one is needed
[hibernate4-maven-plugin] / src / it / hibernate-lob-converter-bug / create.sql
diff --git a/src/it/hibernate-lob-converter-bug/create.sql b/src/it/hibernate-lob-converter-bug/create.sql
new file mode 100644 (file)
index 0000000..ed04fc4
--- /dev/null
@@ -0,0 +1,7 @@
+create sequence hibernate_sequence start with 1 increment by 1;
+
+    create table MyEntity (
+        id integer not null,
+        status blob,
+        primary key (id)
+    );