Arquivo de Remessa CNAB

bug#9100
bug#9803

dev:rafael.henrique

qua:Marcelo

git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/BD/FlyWay/trunk@81787 d1611594-4594-4d17-8e1d-87c2c4800839
master
rafael.henrique 2018-05-11 17:17:29 +00:00
parent 84a92ff046
commit e7a9afb494
1 changed files with 15 additions and 0 deletions

View File

@ -0,0 +1,15 @@
declare
column_exists exception;
pragma exception_init (column_exists , -01430);
begin
execute immediate 'ALTER TABLE FECHAMENTO_PARAMGERAL ADD (BOLETO_BANCO_AGENCIA_DIGITO NUMBER(1))';
exception when column_exists then null;
end;
/
declare
column_exists exception;
pragma exception_init (column_exists , -01430);
begin
execute immediate 'ALTER TABLE FECHAMENTO_PARAMGERAL ADD (BOLETO_BANCO_CARTEIRA_VARIAVEL NUMBER(3))';
exception when column_exists then null;
end;