fixes bug#10306

git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/BD/FlyWay/trunk@78945 d1611594-4594-4d17-8e1d-87c2c4800839
master
rafael.henrique 2018-02-15 18:35:03 +00:00
parent 9d0f2e05ec
commit 56aa1c84a0
1 changed files with 9 additions and 0 deletions

View File

@ -37,3 +37,12 @@ declare
VALUES (CONSTANTE_SEQ.nextval, ''USUARIO_WS_FIDELIDADE'', ''USUARIO de chamada do projeto Fidelidade'', ''1'', ''1'', ''1'', sysdate, ''1'')';
exception when others then null;
end;
/
declare
object_exists exception;
pragma exception_init (object_exists , -00955);
begin
execute immediate 'ALTER TABLE BOLETO ADD (TEMPORESERVAFIDELIDADE NUMBER(7,0))';
exception when object_exists then null;
end;