fixes bug#21305

qua:
dev:Valdir
Erro campo url menor que necessario

git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/BD/FlyWay/trunk@104827 d1611594-4594-4d17-8e1d-87c2c4800839
master
valdevir 2020-12-22 20:46:47 +00:00
parent a3eef904e4
commit 073f92edb1
1 changed files with 11 additions and 0 deletions

View File

@ -0,0 +1,11 @@
declare
object_exists exception;
except_00957 exception;
pragma exception_init (object_exists , -01430);
pragma exception_init (except_00957 , -00957);
begin
execute immediate 'ALTER TABLE EMPRESA MODIFY URLBASESEGURO VARCHAR2(100)';
exception
when object_exists then null;
when except_00957 then null;
end;