From 9586368123c098b4f596a1a863d7125c8b7147ab Mon Sep 17 00:00:00 2001 From: julio Date: Sun, 27 Aug 2017 13:25:05 +0000 Subject: [PATCH] fixes bug #9608 git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/BD/FlyWay/trunk@73173 d1611594-4594-4d17-8e1d-87c2c4800839 --- src/db/migration/V20170826_1700__mantis9608.sql | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 src/db/migration/V20170826_1700__mantis9608.sql diff --git a/src/db/migration/V20170826_1700__mantis9608.sql b/src/db/migration/V20170826_1700__mantis9608.sql new file mode 100644 index 000000000..ed7fb3c2e --- /dev/null +++ b/src/db/migration/V20170826_1700__mantis9608.sql @@ -0,0 +1,17 @@ +declare + column_exists exception; + pragma exception_init (column_exists , -01430); +begin + execute immediate 'ALTER TABLE CAJA ADD (FOLIORMD VARCHAR2(20))'; + exception when column_exists then null; +end; +/ + +declare + column_exists exception; + pragma exception_init (column_exists , -01430); +begin + execute immediate 'ALTER TABLE CAJA ADD (RMD_ID NUMBER(15))'; + exception when column_exists then null; +end; +/ \ No newline at end of file