git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/BD/FlyWay/trunk@67757 d1611594-4594-4d17-8e1d-87c2c4800839
master
julio 2017-04-05 18:53:33 +00:00
parent 15dd753b5c
commit 1228cae5f9
1 changed files with 6 additions and 0 deletions

View File

@ -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);