From 32e0ce998e025fd8740b996b321a40eef2309951 Mon Sep 17 00:00:00 2001 From: leonardo Date: Thu, 11 May 2017 13:38:09 +0000 Subject: [PATCH] fixes bug #9003 git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/BD/FlyWay/trunk@68738 d1611594-4594-4d17-8e1d-87c2c4800839 --- src/db/migration/V20170511_1025__mantis9003.sql | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 src/db/migration/V20170511_1025__mantis9003.sql diff --git a/src/db/migration/V20170511_1025__mantis9003.sql b/src/db/migration/V20170511_1025__mantis9003.sql new file mode 100644 index 000000000..4572b3fe9 --- /dev/null +++ b/src/db/migration/V20170511_1025__mantis9003.sql @@ -0,0 +1,8 @@ +declare + object_exists exception; + pragma exception_init (object_exists , -00955); +begin + execute immediate 'ALTER TABLE RUTA MODIFY (PREFIXO VARCHAR2(20))'; + execute immediate 'ALTER TABLE RUTA MODIFY (PREFIXOAUXILIAR VARCHAR2(20))'; + exception when object_exists then null; +end; \ No newline at end of file