From 1228cae5f9be3af4c7a8f5e4105931dbf0f86040 Mon Sep 17 00:00:00 2001 From: julio Date: Wed, 5 Apr 2017 18:53:33 +0000 Subject: [PATCH] fixes bug #7933 git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/BD/FlyWay/trunk@67757 d1611594-4594-4d17-8e1d-87c2c4800839 --- src/db/migration/V20170404_1633__mantis7933.sql | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/db/migration/V20170404_1633__mantis7933.sql b/src/db/migration/V20170404_1633__mantis7933.sql index c4b5e8e1d..c7f0ede73 100644 --- a/src/db/migration/V20170404_1633__mantis7933.sql +++ b/src/db/migration/V20170404_1633__mantis7933.sql @@ -5,7 +5,9 @@ begin execute immediate 'ALTER TABLE RUTA ADD (INDRUTAINTERNACIONAL NUMBER(1,0) DEFAULT 0 NOT NULL ENABLE)'; exception when column_exists then null; end; +/ +-- Placeholder declare column_exists exception; pragma exception_init (column_exists , -01430); @@ -13,7 +15,9 @@ begin execute immediate 'ALTER TABLE CONDUCTOR ADD (NACIONALIDAD VARCHAR2(30 BYTE))'; exception when column_exists then null; end; +/ +-- Placeholder declare column_exists exception; pragma exception_init (column_exists , -01430); @@ -22,7 +26,9 @@ begin execute immediate 'ALTER TABLE BOLETO ADD (SEXO VARCHAR2(1 BYTE))'; exception when column_exists then null; end; +/ +-- Placeholder declare column_exists exception; pragma exception_init (column_exists , -01430);