From 38a553e9d31db19f535723aa96b5d3fc4af8828d Mon Sep 17 00:00:00 2001 From: valdevir Date: Mon, 8 May 2017 20:30:04 +0000 Subject: [PATCH] fixes bug #8973 git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/BD/FlyWay/trunk@68611 d1611594-4594-4d17-8e1d-87c2c4800839 --- src/db/migration/V20170505_1840__mantis8973.sql | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 src/db/migration/V20170505_1840__mantis8973.sql diff --git a/src/db/migration/V20170505_1840__mantis8973.sql b/src/db/migration/V20170505_1840__mantis8973.sql new file mode 100644 index 000000000..a00b6f5b6 --- /dev/null +++ b/src/db/migration/V20170505_1840__mantis8973.sql @@ -0,0 +1,7 @@ +declare + object_exists exception; + pragma exception_init (object_exists , -00955); +begin + execute immediate 'ALTER TABLE FOLIO_PREIMPRESO ADD (AIDF_ID NUMBER(15))'; + exception when object_exists then null; +end;