From c891973d206c4829e1e7610f98eccaa2f6d71f13 Mon Sep 17 00:00:00 2001 From: luis Date: Mon, 16 Oct 2017 15:50:39 +0000 Subject: [PATCH] =?UTF-8?q?Issue=20#9962:=20Multa=20devolu=C3=A7=C3=A3o=20?= =?UTF-8?q?venda=20em=20aberto?= 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@74890 d1611594-4594-4d17-8e1d-87c2c4800839 --- src/db/migration/V20171013_1800__mantis9962.sql | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 src/db/migration/V20171013_1800__mantis9962.sql diff --git a/src/db/migration/V20171013_1800__mantis9962.sql b/src/db/migration/V20171013_1800__mantis9962.sql new file mode 100644 index 000000000..cd2d1bfd6 --- /dev/null +++ b/src/db/migration/V20171013_1800__mantis9962.sql @@ -0,0 +1,7 @@ +declare + object_exists exception; + pragma exception_init (object_exists , -01430); +begin + execute immediate 'ALTER TABLE ORGAO_CANCELACION add INDMULTADEVOLUCAOABERTO NUMBER(1)'; + exception when object_exists then null; +end; \ No newline at end of file