From 3a1110cfaa84e2b6696418154ff9f1387fae918f Mon Sep 17 00:00:00 2001 From: thiago Date: Mon, 19 Jun 2017 21:43:29 +0000 Subject: [PATCH] =?UTF-8?q?fixed=20bug=20#9212=20-=20Corre=C3=A7=C3=A3o=20?= =?UTF-8?q?de=20problema=20em=20ambiente=20da=20serra=20verde.=20Altera?= =?UTF-8?q?=C3=A7=C3=A3o=20do=20tamanho=20do=20campo=20monet=C3=A1rio.?= 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@70069 d1611594-4594-4d17-8e1d-87c2c4800839 --- .../V20170619_1834__importeContaCorrente.sql | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 src/db/migration/V20170619_1834__importeContaCorrente.sql diff --git a/src/db/migration/V20170619_1834__importeContaCorrente.sql b/src/db/migration/V20170619_1834__importeContaCorrente.sql new file mode 100644 index 000000000..7fd65c94f --- /dev/null +++ b/src/db/migration/V20170619_1834__importeContaCorrente.sql @@ -0,0 +1,17 @@ +declare + column_exists exception; + pragma exception_init (column_exists , -01430); +begin + execute immediate 'alter table CONTA_CORRENTE_PTOVTA MODIFY ( IMPORTE number(12,2), +IMPORTETARIFA number(12,2), +IMPORTEPEDAGIO number(12,2), +IMPORTETAXAEMBARQUE number(12,2), +IMPORTESEGURO number(12,2), +IMPORTEINGRESO number(12,2), +IMPORTEEGRESO number(12,2), +IMPORTEDEVOLUCION number(12,2), +IMPORTETROCA number(12,2), +IMPORTECAJA number(12,2), +IMPORTETOTALEFECTIVO number(12,2))'; + exception when column_exists then null; +end; \ No newline at end of file