diff --git a/src/db/migration/V20180227_1630__mantis9984.sql b/src/db/migration/V20180227_1630__mantis9984.sql new file mode 100644 index 000000000..631b10bff --- /dev/null +++ b/src/db/migration/V20180227_1630__mantis9984.sql @@ -0,0 +1,17 @@ +begin + execute immediate 'CREATE SEQUENCE TAXPOL_SEQ MINVALUE 1 MAXVALUE 9999999999999999999999999999 INCREMENT BY 1 START WITH 1 NOCACHE ORDER NOCYCLE'; + exception when others then null; +end; +/ + +begin + execute immediate 'CREATE SEQUENCE TAXPOLC_SEQ MINVALUE 1 MAXVALUE 9999999999999999999999999999 INCREMENT BY 1 START WITH 1 NOCACHE ORDER NOCYCLE' ; + exception when others then null; +end; +/ + +begin + execute immediate 'CREATE SEQUENCE TAXPOLV_SEQ MINVALUE 1 MAXVALUE 9999999999999999999999999999 INCREMENT BY 1 START WITH 1 NOCACHE ORDER NOCYCLE' ; + exception when others then null; +end; +/ \ No newline at end of file