From 5884cf312453d311e2efb59641093a3c7f9a5786 Mon Sep 17 00:00:00 2001 From: valdir Date: Wed, 8 Aug 2018 19:47:50 +0000 Subject: [PATCH] =?UTF-8?q?0011635:=20Relat=C3=B3rio=20exporta=C3=A7=C3=A3?= =?UTF-8?q?o=20idoso=20ARTESP=20fixes=20bug#11635=20fixes=20bug#11693=20fi?= =?UTF-8?q?xes=20bug#11694=20dev:thiago=20qua:marcelo?= 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@84055 d1611594-4594-4d17-8e1d-87c2c4800839 --- src/db/migration/V20180808_1346_mantis11635.sql | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 src/db/migration/V20180808_1346_mantis11635.sql diff --git a/src/db/migration/V20180808_1346_mantis11635.sql b/src/db/migration/V20180808_1346_mantis11635.sql new file mode 100644 index 000000000..ffdc95a30 --- /dev/null +++ b/src/db/migration/V20180808_1346_mantis11635.sql @@ -0,0 +1,7 @@ +declare + column_exists exception; + pragma exception_init (column_exists , -01430); +begin + execute immediate 'ALTER TABLE BOLETO ADD (DESCENDERECO VARCHAR2(200 BYTE))'; + exception when column_exists then null; +end; \ No newline at end of file