From a2813ec9468568a3ae4e0743f52c07d665c65440 Mon Sep 17 00:00:00 2001 From: changelogweb Date: Tue, 27 Feb 2018 19:31:42 +0000 Subject: [PATCH] bug#9984 git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/BD/FlyWay/trunk@79238 d1611594-4594-4d17-8e1d-87c2c4800839 --- src/db/migration/V20180227_1630__mantis9984.sql | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 src/db/migration/V20180227_1630__mantis9984.sql 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