Fixed a bug when handling test-dependencies: XML-mappings were ignored
[hibernate4-maven-plugin] / src / it / hib-test / postgres.sql
index 875da31..7624731 100644 (file)
@@ -1,12 +1,10 @@
 
-    drop table if exists test_simple cascade;
-
     create table test_simple (
         uuid varchar(36) not null,
         content text,
+        created timestamp,
         externalid varchar(148),
         sources varchar(255),
         primary key (uuid)
     );
-
-    create index idx_test_simple_tuple on test_simple (sources, uuid);
+create index idx_test_simple_tuple on test_simple (sources, uuid);