From 50b09ff5062eb550412d77c2469ef2c470a92a6c Mon Sep 17 00:00:00 2001 From: wilian Date: Wed, 16 Aug 2017 22:13:56 +0000 Subject: [PATCH] fixes bug #9361 git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/BD/FlyWay/trunk@72643 d1611594-4594-4d17-8e1d-87c2c4800839 --- src/db/migration/V20170814_1600__mantis9361.sql | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 src/db/migration/V20170814_1600__mantis9361.sql diff --git a/src/db/migration/V20170814_1600__mantis9361.sql b/src/db/migration/V20170814_1600__mantis9361.sql new file mode 100644 index 000000000..8b54faebd --- /dev/null +++ b/src/db/migration/V20170814_1600__mantis9361.sql @@ -0,0 +1,10 @@ +declare + object_exists exception; + pragma exception_init (object_exists , -02260); +begin + execute immediate 'ALTER TABLE CONTA_CORRENTE_PTOVTA ADD ( + IMPORTETOTALDEBITO NUMBER(12,2), + IMPORTETOTALCREDITO NUMBER(12,2) + )'; + exception when object_exists then null; +end; \ No newline at end of file