From a90a21b6028ccc2f9c3f762d87e814f5ab9951d3 Mon Sep 17 00:00:00 2001 From: walace Date: Fri, 1 Mar 2019 13:21:40 +0000 Subject: [PATCH] fixes bug#13012 qua:bruno dev:julio git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/BD/FlyWay/trunk@90438 d1611594-4594-4d17-8e1d-87c2c4800839 --- src/db/migration/V20190301_0950__mantis13012.sql | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 src/db/migration/V20190301_0950__mantis13012.sql diff --git a/src/db/migration/V20190301_0950__mantis13012.sql b/src/db/migration/V20190301_0950__mantis13012.sql new file mode 100644 index 000000000..388270901 --- /dev/null +++ b/src/db/migration/V20190301_0950__mantis13012.sql @@ -0,0 +1,8 @@ +declare + object_exists exception; + pragma exception_init (object_exists , -00955); +begin + execute immediate 'ALTER TABLE CAJA_DIVERSOS ADD AIDF_ID NUMBER(15,0)'; + exception when object_exists then null; +end; +