bug#24573
dev:lucas qua: git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/BD/FlyWay/trunk@112945 d1611594-4594-4d17-8e1d-87c2c4800839master
parent
70e09f37fb
commit
13601150cc
|
@ -56,3 +56,22 @@ begin
|
|||
exception when object_exists then null;
|
||||
end;
|
||||
/
|
||||
declare
|
||||
column_exists exception;
|
||||
pragma exception_init (column_exists , -01430);
|
||||
begin
|
||||
execute immediate 'ALTER TABLE CAJA ADD (NUM_MACON VARCHAR2(9))';
|
||||
exception when column_exists then null;
|
||||
end;
|
||||
/
|
||||
|
||||
declare
|
||||
column_exists exception;
|
||||
pragma exception_init (column_exists , -01430);
|
||||
begin
|
||||
execute immediate 'ALTER TABLE CAJA ADD (NUMSERIE_MACON VARCHAR2(4))';
|
||||
exception when column_exists then null;
|
||||
end;
|
||||
/
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue