From a8665c9fd800cae565ce6b3ba8da02d4945dec9d Mon Sep 17 00:00:00 2001 From: thiago Date: Thu, 27 Apr 2017 22:04:57 +0000 Subject: [PATCH] =?UTF-8?q?fixed=20bug=20#8735=20-=20Cria=C3=A7=C3=A3o=20d?= =?UTF-8?q?e=20campo=20para=20imprimir=20gratuidade=20e=20contabilizar=20c?= =?UTF-8?q?omo=20estoque=20e=20formul=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@68342 d1611594-4594-4d17-8e1d-87c2c4800839 --- src/db/migration/V20170426_1054__mantis8735.sql | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 src/db/migration/V20170426_1054__mantis8735.sql diff --git a/src/db/migration/V20170426_1054__mantis8735.sql b/src/db/migration/V20170426_1054__mantis8735.sql new file mode 100644 index 000000000..d37a86ff2 --- /dev/null +++ b/src/db/migration/V20170426_1054__mantis8735.sql @@ -0,0 +1,8 @@ + +declare + column_exists exception; + pragma exception_init (column_exists , -01430); +begin + execute immediate 'ALTER TABLE EMPRESA ADD (INDIMPRIMEGRATUIDADE NUMBER(1,0))'; + exception when column_exists then null; +end;