From e7a9afb494b1bd320b6b08d39ff6234a3ea099d6 Mon Sep 17 00:00:00 2001 From: "rafael.henrique" Date: Fri, 11 May 2018 17:17:29 +0000 Subject: [PATCH] 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 --- src/db/migration/V20180430_2000__mantis9100.sql | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 src/db/migration/V20180430_2000__mantis9100.sql diff --git a/src/db/migration/V20180430_2000__mantis9100.sql b/src/db/migration/V20180430_2000__mantis9100.sql new file mode 100644 index 000000000..759512204 --- /dev/null +++ b/src/db/migration/V20180430_2000__mantis9100.sql @@ -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;