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-87c2c4800839master
parent
75ce73973f
commit
cfa2f20be6
|
@ -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;
|
Loading…
Reference in New Issue