Issue #9962: Multa devolução venda em aberto

git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/BD/FlyWay/trunk@74890 d1611594-4594-4d17-8e1d-87c2c4800839
master
luis 2017-10-16 15:50:39 +00:00
parent aa000df045
commit c891973d20
1 changed files with 7 additions and 0 deletions

View File

@ -0,0 +1,7 @@
declare
object_exists exception;
pragma exception_init (object_exists , -01430);
begin
execute immediate 'ALTER TABLE ORGAO_CANCELACION add INDMULTADEVOLUCAOABERTO NUMBER(1)';
exception when object_exists then null;
end;