From 7028c75224ba7d047a32a58d21c811d3106d2f11 Mon Sep 17 00:00:00 2001 From: alberto Date: Thu, 10 May 2018 18:02:20 +0000 Subject: [PATCH] =?UTF-8?q?[BPE]:=20Adequa=C3=A7=C3=A3o=20do=20envio=20da?= =?UTF-8?q?=20al=C3=ADquota=20ICMS=20bug#11062=20dev:trevezani=20qua:regis?= 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@81738 d1611594-4594-4d17-8e1d-87c2c4800839 --- src/db/migration/V20180510_1500__mantis11062.sql | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 src/db/migration/V20180510_1500__mantis11062.sql diff --git a/src/db/migration/V20180510_1500__mantis11062.sql b/src/db/migration/V20180510_1500__mantis11062.sql new file mode 100644 index 000000000..37b495e09 --- /dev/null +++ b/src/db/migration/V20180510_1500__mantis11062.sql @@ -0,0 +1,7 @@ +declare + column_exists exception; + pragma exception_init (column_exists , -01430); +begin + execute immediate 'ALTER TABLE EMPRESA_IMPOSTO ADD (PORCREDBASEICMSIM NUMBER(7,2))'; + exception when column_exists then null; +end;