fixed bug #9293 - Cadastro de parametro para permissão de cobranças(multa, diferença maior e diferença menor) em remarcação(Transferencia).

git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/BD/FlyWay/trunk@71453 d1611594-4594-4d17-8e1d-87c2c4800839
master
thiago 2017-07-17 20:27:39 +00:00
parent 75ce73973f
commit cfa2f20be6
1 changed files with 9 additions and 0 deletions

View File

@ -0,0 +1,9 @@
declare
column_exists exception;
pragma exception_init (column_exists , -01430);
begin
execute immediate 'ALTER TABLE ORGAO_CANCELACION ADD(INDMULTATRANSFERENCIA NUMBER(1,0),
INDDEVOLUCAOTRANSFERENCIA NUMBER(1,0),
INDCOBRANCATRANSFERENCIA NUMBER(1,0))';
exception when column_exists then null;
end;