From 189e4633b6eaf150e0a9b0da062a6c3bab0b067f Mon Sep 17 00:00:00 2001 From: valdir Date: Wed, 24 Oct 2018 18:05:08 +0000 Subject: [PATCH] =?UTF-8?q?0012468:=20Erro=20ao=20tentar=20vender=20-=20SC?= =?UTF-8?q?O=20Homologa=C3=A7=C3=A3o=20bug#12468=20dev:thiago=20qua:junia?= =?UTF-8?q?=20Adicionado=20o=20campo=20INTEGRADOTOTVS=20na=20tabela=20CAJA?= 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@86457 d1611594-4594-4d17-8e1d-87c2c4800839 --- src/db/migration/V20181022_1725__mantis12468.sql | 3 +++ src/db/postgresql/migration/V20181022_1725__mantis12468.sql | 3 +++ 2 files changed, 6 insertions(+) diff --git a/src/db/migration/V20181022_1725__mantis12468.sql b/src/db/migration/V20181022_1725__mantis12468.sql index d615613fb..555c200c9 100644 --- a/src/db/migration/V20181022_1725__mantis12468.sql +++ b/src/db/migration/V20181022_1725__mantis12468.sql @@ -1,3 +1,6 @@ +declare + column_exists exception; + pragma exception_init (column_exists , -01430); begin execute immediate 'ALTER TABLE CAJA ADD (INTEGRADOTOTVS NUMBER(1,0))'; exception when column_exists then null; diff --git a/src/db/postgresql/migration/V20181022_1725__mantis12468.sql b/src/db/postgresql/migration/V20181022_1725__mantis12468.sql index d615613fb..555c200c9 100644 --- a/src/db/postgresql/migration/V20181022_1725__mantis12468.sql +++ b/src/db/postgresql/migration/V20181022_1725__mantis12468.sql @@ -1,3 +1,6 @@ +declare + column_exists exception; + pragma exception_init (column_exists , -01430); begin execute immediate 'ALTER TABLE CAJA ADD (INTEGRADOTOTVS NUMBER(1,0))'; exception when column_exists then null;