bug#24573

dev:lucas

qua:

git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/BD/FlyWay/trunk@112945 d1611594-4594-4d17-8e1d-87c2c4800839
master
lucas.taia 2022-06-24 23:18:49 +00:00
parent 70e09f37fb
commit 13601150cc
1 changed files with 20 additions and 1 deletions

View File

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