From db5998c77b8fce2599c2f2685024e64eeaba362c Mon Sep 17 00:00:00 2001 From: luis Date: Mon, 17 Jul 2017 22:48:08 +0000 Subject: [PATCH] =?UTF-8?q?Issue=20#9294:=20GAP053=20-=20PARAMETRIZAR=20PO?= =?UTF-8?q?R=20AG=C3=8ANCIA=20O=20CANCELAMENTO/TROCA/ANULA=C3=87=C3=83O/DE?= =?UTF-8?q?VOLU=C3=87=C3=83O?= 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@71472 d1611594-4594-4d17-8e1d-87c2c4800839 --- src/db/migration/V20170717_1500__mantis9294.sql | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 src/db/migration/V20170717_1500__mantis9294.sql diff --git a/src/db/migration/V20170717_1500__mantis9294.sql b/src/db/migration/V20170717_1500__mantis9294.sql new file mode 100644 index 000000000..0f7fdd4bc --- /dev/null +++ b/src/db/migration/V20170717_1500__mantis9294.sql @@ -0,0 +1,8 @@ +declare + object_exists exception; + pragma exception_init (object_exists , -01430); +begin + execute immediate 'ALTER TABLE REQUISICION_BOLETO ADD (USUARIOESTOQUE_ID NUMBER(7))'; + execute immediate 'ALTER TABLE ABASTO_BOLETO ADD (USUARIOESTOQUE_ID NUMBER(7))'; + exception when object_exists then null; +end; \ No newline at end of file