fixes bug#10306
git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/BD/FlyWay/trunk@78945 d1611594-4594-4d17-8e1d-87c2c4800839master
parent
9d0f2e05ec
commit
56aa1c84a0
|
@ -37,3 +37,12 @@ declare
|
||||||
VALUES (CONSTANTE_SEQ.nextval, ''USUARIO_WS_FIDELIDADE'', ''USUARIO de chamada do projeto Fidelidade'', ''1'', ''1'', ''1'', sysdate, ''1'')';
|
VALUES (CONSTANTE_SEQ.nextval, ''USUARIO_WS_FIDELIDADE'', ''USUARIO de chamada do projeto Fidelidade'', ''1'', ''1'', ''1'', sysdate, ''1'')';
|
||||||
exception when others then null;
|
exception when others then null;
|
||||||
end;
|
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;
|
||||||
|
|
Loading…
Reference in New Issue