Introduced the goal "drop"
[hibernate4-maven-plugin] / src / it / hibernate4-maven-plugin-envers-sample / create-tables-hsqldb.sql
index fe6130e..180166f 100644 (file)
@@ -1,4 +1,8 @@
 
+    create sequence TTL_AUDIT_REVISION_SEQ start with 1 increment by 10;
+
+    create sequence TTL_EVENT_SEQ start with 1 increment by 10;
+
     create table TTL_AUDIT_REVISION (
         ID bigint not null,
         EVENT_DATE timestamp,
     );
 
     alter table TTL_EVENT_AUD 
-        add constraint FK_cjsh8995uabmdm9b30uvmyj6p 
+        add constraint FK295td34se5kaxwgo8i1ph0k4 
         foreign key (REV) 
         references TTL_AUDIT_REVISION;
-
-    create sequence TTL_AUDIT_REVISION_SEQ;
-
-    create sequence TTL_EVENT_SEQ;