From 4d4980c0ee8ec214384ad5397429282a6b2c186e Mon Sep 17 00:00:00 2001 From: "eduardo.dicarde" Date: Thu, 11 May 2017 14:39:19 +0000 Subject: [PATCH] fixbug #8996 git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/BD/FlyWay/trunk@68750 d1611594-4594-4d17-8e1d-87c2c4800839 --- .../migration/V20170610_1200__mantis8996.sql | 25 +++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 src/db/migration/V20170610_1200__mantis8996.sql diff --git a/src/db/migration/V20170610_1200__mantis8996.sql b/src/db/migration/V20170610_1200__mantis8996.sql new file mode 100644 index 000000000..362d41d7a --- /dev/null +++ b/src/db/migration/V20170610_1200__mantis8996.sql @@ -0,0 +1,25 @@ +declare + object_exists exception; + pragma exception_init (object_exists , -00955); +begin + execute immediate 'ALTER TABLE CAJA ADD (FECVENTADIGITA DATE)'; + exception when object_exists then null; +end; +/ + +declare + object_exists exception; + pragma exception_init (object_exists , -00955); +begin + execute immediate 'ALTER TABLE BOLETO ADD (FECVENTADIGITA DATE)'; + exception when object_exists then null; +end; +/ + +declare + object_exists exception; + pragma exception_init (object_exists , -00955); +begin + execute immediate 'ALTER TABLE DIGITA_ITEM ADD (FECVENTADIGITA DATE)'; + exception when object_exists then null; +end; \ No newline at end of file