From a39525a53ee80a175a074b60319bc80a7bc6f4cd Mon Sep 17 00:00:00 2001 From: alberto Date: Tue, 17 Jan 2017 18:21:29 +0000 Subject: [PATCH] =?UTF-8?q?Melhoria=20nas=20informa=C3=A7=C3=B5es=20fiscai?= =?UTF-8?q?s=20para=20rastreamento=20de=20problemas?= 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@65008 d1611594-4594-4d17-8e1d-87c2c4800839 --- src/db/migration/V20170117_1400__GravaR7.sql | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 src/db/migration/V20170117_1400__GravaR7.sql diff --git a/src/db/migration/V20170117_1400__GravaR7.sql b/src/db/migration/V20170117_1400__GravaR7.sql new file mode 100644 index 000000000..893802a6c --- /dev/null +++ b/src/db/migration/V20170117_1400__GravaR7.sql @@ -0,0 +1,7 @@ +declare + object_exists exception; + pragma exception_init (object_exists , -00955); +begin + execute immediate 'ALTER TABLE FISCAL_R7 ADD (BOLETO_ID NUMBER(15))'; + exception when object_exists then null; +end; \ No newline at end of file