From 3ec6360c17e7ad725187f2ea3d83cbd1b1bf9b9f Mon Sep 17 00:00:00 2001 From: "lucas.taia" Date: Fri, 21 Jul 2017 17:16:26 +0000 Subject: [PATCH] bug #9287 git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/BD/FlyWay/trunk@71728 d1611594-4594-4d17-8e1d-87c2c4800839 --- .../migration/V20170721_1416__mantis9287.sql | 25 +++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 src/db/migration/V20170721_1416__mantis9287.sql diff --git a/src/db/migration/V20170721_1416__mantis9287.sql b/src/db/migration/V20170721_1416__mantis9287.sql new file mode 100644 index 000000000..44c02d632 --- /dev/null +++ b/src/db/migration/V20170721_1416__mantis9287.sql @@ -0,0 +1,25 @@ +declare + object_exists exception; + pragma exception_init (object_exists , -01430); +begin + execute immediate 'ALTER TABLE ESTADO ADD (DESCPROMOCIONAL1 VARCHAR2(46) )'; + exception when object_exists then null; +end; +/ +declare + object_exists exception; + pragma exception_init (object_exists , -01430); +begin + execute immediate 'ALTER TABLE ESTADO ADD (DESCPROMOCIONAL2 VARCHAR2(46) )'; + exception when object_exists then null; +end; +/ +declare + object_exists exception; + pragma exception_init (object_exists , -01430); +begin + execute immediate 'ALTER TABLE ESTADO ADD (DESCPROMOCIONAL3 VARCHAR2(46) )'; + exception when object_exists then null; +end; +/ +