Added a test-case to proofe, that @Converter and @Lob can be used together
[hibernate4-maven-plugin] / src / it / lob / create.sql
diff --git a/src/it/lob/create.sql b/src/it/lob/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)
+    );