From 23025c0f9d930dfbd3ec6bdba833c7279eae30c4 Mon Sep 17 00:00:00 2001 From: alberto Date: Wed, 10 May 2017 18:36:21 +0000 Subject: [PATCH] =?UTF-8?q?Gerar=20lan=C3=A7amento=20comiss=C3=A3o=20no=20?= =?UTF-8?q?conta=20corrente=20da=20ag=C3=AAncia=20(issue=208900)?= 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@68712 d1611594-4594-4d17-8e1d-87c2c4800839 --- src/db/migration/V20170510_1120__mantis8900.sql | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 src/db/migration/V20170510_1120__mantis8900.sql diff --git a/src/db/migration/V20170510_1120__mantis8900.sql b/src/db/migration/V20170510_1120__mantis8900.sql new file mode 100644 index 000000000..a12ca43db --- /dev/null +++ b/src/db/migration/V20170510_1120__mantis8900.sql @@ -0,0 +1,7 @@ +declare + object_exists exception; + pragma exception_init (object_exists , -00955); +begin + execute immediate 'ALTER TABLE PTOVTA_COMISSAO ADD (INDRETERCOMISSAO NUMBER(1))'; + exception when object_exists then null; +end;