From cfa2f20be687a3d2e4ce0083d262fd24dd7d1a4d Mon Sep 17 00:00:00 2001 From: thiago Date: Mon, 17 Jul 2017 20:27:39 +0000 Subject: [PATCH] =?UTF-8?q?fixed=20bug=20#9293=20-=20Cadastro=20de=20param?= =?UTF-8?q?etro=20para=20permiss=C3=A3o=20de=20cobran=C3=A7as(multa,=20dif?= =?UTF-8?q?eren=C3=A7a=20maior=20e=20diferen=C3=A7a=20menor)=20em=20remarc?= =?UTF-8?q?a=C3=A7=C3=A3o(Transferencia).?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/BD/FlyWay/trunk@71453 d1611594-4594-4d17-8e1d-87c2c4800839 --- src/db/migration/V20170716_1718__mantis9293.sql | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 src/db/migration/V20170716_1718__mantis9293.sql diff --git a/src/db/migration/V20170716_1718__mantis9293.sql b/src/db/migration/V20170716_1718__mantis9293.sql new file mode 100644 index 000000000..80d96ecf4 --- /dev/null +++ b/src/db/migration/V20170716_1718__mantis9293.sql @@ -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; \ No newline at end of file