bug#12736

dev:lucas

qua: 

git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/BD/FlyWay/trunk@87180 d1611594-4594-4d17-8e1d-87c2c4800839
master
lucas.taia 2018-11-20 16:23:13 +00:00
parent f840a0cc5e
commit e36ab8a8f2
1 changed files with 17 additions and 0 deletions

View File

@ -0,0 +1,17 @@
declare
object_exists exception;
pragma exception_init (object_exists , -01430);
begin
execute immediate
'ALTER TABLE EMPRESA_EMAIL MODIFY (ASSUNTO VARCHAR2(500))';
exception when object_exists then null;
end;
/
declare
object_exists exception;
pragma exception_init (object_exists , -01430);
begin
execute immediate
'ALTER TABLE EMPRESA_EMAIL MODIFY (ASSUNTOFISCAL VARCHAR2(500))';
exception when object_exists then null;
end;