From e6a64ba942c01841d55bd6d79d2050a4f5882f3f Mon Sep 17 00:00:00 2001 From: thiago Date: Fri, 15 Sep 2017 22:08:29 +0000 Subject: [PATCH] =?UTF-8?q?fixed=20bug=20#9832=20-=20Altera=C3=A7=C3=A3o?= =?UTF-8?q?=20de=20campo=20em=20tabela=20fiscal=20para=20subserie.?= 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@73909 d1611594-4594-4d17-8e1d-87c2c4800839 --- src/db/migration/V20170915_1846__subserieFiscalM61.sql | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 src/db/migration/V20170915_1846__subserieFiscalM61.sql diff --git a/src/db/migration/V20170915_1846__subserieFiscalM61.sql b/src/db/migration/V20170915_1846__subserieFiscalM61.sql new file mode 100644 index 000000000..c6ab29f68 --- /dev/null +++ b/src/db/migration/V20170915_1846__subserieFiscalM61.sql @@ -0,0 +1,7 @@ +declare + column_exists exception; + pragma exception_init (column_exists , -01430); +begin + execute immediate 'alter table FISCALM_61 modify subserie varchar2(6)'; + exception when column_exists then null; +end; \ No newline at end of file