From 9d645665552e8535667bb9b451bb78d5ff06121a Mon Sep 17 00:00:00 2001 From: julio Date: Wed, 9 Aug 2017 19:55:50 +0000 Subject: [PATCH] fixes bug #9069 git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/BD/FlyWay/trunk@72470 d1611594-4594-4d17-8e1d-87c2c4800839 --- src/db/migration/V20170809_1658__mantis9069.sql | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 src/db/migration/V20170809_1658__mantis9069.sql diff --git a/src/db/migration/V20170809_1658__mantis9069.sql b/src/db/migration/V20170809_1658__mantis9069.sql new file mode 100644 index 000000000..c8cc8e3dd --- /dev/null +++ b/src/db/migration/V20170809_1658__mantis9069.sql @@ -0,0 +1,7 @@ +declare + object_exists exception; + pragma exception_init (object_exists , -02260); +begin + execute immediate 'ALTER TABLE PARADA ADD (DESCPROCON VARCHAR2(48))'; + exception when object_exists then null; +end; \ No newline at end of file