fixes bug#11340

dev:thiago
qua:

git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/BD/FlyWay/trunk@82640 d1611594-4594-4d17-8e1d-87c2c4800839
master
wilian 2018-06-14 18:48:01 +00:00
parent 96b495378e
commit 11651fab50
1 changed files with 8 additions and 0 deletions

View File

@ -0,0 +1,8 @@
declare
object_exists exception;
pragma exception_init (object_exists , -02275);
begin
execute immediate
'ALTER TABLE EMPRESA ADD (INDTRANSFERENCIABPEMOVICAJA NUMBER(1,0))';
exception when object_exists then null;
end;