From d7efcc85aa457536c27e68c91870ab8ea5cf05a9 Mon Sep 17 00:00:00 2001 From: julio Date: Thu, 17 Nov 2016 17:04:32 +0000 Subject: [PATCH] fixes bug #8121 git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/BD/FlyWay/trunk@62671 d1611594-4594-4d17-8e1d-87c2c4800839 --- src/db/migration/V20161117_1450__mantis8122.sql | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 src/db/migration/V20161117_1450__mantis8122.sql diff --git a/src/db/migration/V20161117_1450__mantis8122.sql b/src/db/migration/V20161117_1450__mantis8122.sql new file mode 100644 index 000000000..e035bc25b --- /dev/null +++ b/src/db/migration/V20161117_1450__mantis8122.sql @@ -0,0 +1,9 @@ +declare + object_exists exception; + pragma exception_init (object_exists , -00955); +begin + execute immediate 'CREATE SEQUENCE REGION_METROPOLITANA_SEQ + MINVALUE 1 MAXVALUE 9999999999999999999999999999 INCREMENT BY 1 + START WITH 1 CACHE 20 NOORDER NOCYCLE'; + exception when object_exists then null; +end;