From d9a212e98a936cf043f545a2293ba018731e6a8d Mon Sep 17 00:00:00 2001 From: thiago Date: Wed, 2 Aug 2017 17:26:28 +0000 Subject: [PATCH] =?UTF-8?q?fixed=20bug=20#9520=20-=20Inclus=C3=A3o=20de=20?= =?UTF-8?q?campo=20em=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@72191 d1611594-4594-4d17-8e1d-87c2c4800839 --- src/db/migration/V20170802_1408__mantis9520.sql | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 src/db/migration/V20170802_1408__mantis9520.sql diff --git a/src/db/migration/V20170802_1408__mantis9520.sql b/src/db/migration/V20170802_1408__mantis9520.sql new file mode 100644 index 000000000..5745eaccf --- /dev/null +++ b/src/db/migration/V20170802_1408__mantis9520.sql @@ -0,0 +1,7 @@ +declare + column_exists exception; + pragma exception_init (column_exists , -01430); +begin + execute immediate 'ALTER TABLE CAJA ADD NUMASIENTOVINCULADO VARCHAR(12)'; + exception when column_exists then null; +end; \ No newline at end of file