Issue #9294: GAP053 - PARAMETRIZAR POR AGÊNCIA O CANCELAMENTO/TROCA/ANULAÇÃO/DEVOLUÇÃO

git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/BD/FlyWay/trunk@71472 d1611594-4594-4d17-8e1d-87c2c4800839
master
luis 2017-07-17 22:48:08 +00:00
parent f895f8908e
commit db5998c77b
1 changed files with 8 additions and 0 deletions

View File

@ -0,0 +1,8 @@
declare
object_exists exception;
pragma exception_init (object_exists , -01430);
begin
execute immediate 'ALTER TABLE REQUISICION_BOLETO ADD (USUARIOESTOQUE_ID NUMBER(7))';
execute immediate 'ALTER TABLE ABASTO_BOLETO ADD (USUARIOESTOQUE_ID NUMBER(7))';
exception when object_exists then null;
end;