Upgraded Hibernate
[hibernate4-maven-plugin] / src / it / hib-test / h2.sql
index 9569fa6..fd15b3f 100644 (file)
@@ -1,12 +1,10 @@
 
-    drop table test_simple if exists;
-
     create table test_simple (
         uuid varchar(36) not null,
         content clob,
+        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);