fixes bug #7933
git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/BD/FlyWay/trunk@67757 d1611594-4594-4d17-8e1d-87c2c4800839master
parent
15dd753b5c
commit
1228cae5f9
|
@ -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);
|
||||
|
|
Loading…
Reference in New Issue