From 131a8e9390ee8410aaae18ef06d1940a79587ad7 Mon Sep 17 00:00:00 2001 From: "lucas.taia" Date: Mon, 11 Jun 2018 13:57:44 +0000 Subject: [PATCH] bug#10873 dev:lucas qua: git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/BD/FlyWay/trunk@82532 d1611594-4594-4d17-8e1d-87c2c4800839 --- src/db/migration/V20180611_1050__mantis10873.sql | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 src/db/migration/V20180611_1050__mantis10873.sql diff --git a/src/db/migration/V20180611_1050__mantis10873.sql b/src/db/migration/V20180611_1050__mantis10873.sql new file mode 100644 index 000000000..a23a0954a --- /dev/null +++ b/src/db/migration/V20180611_1050__mantis10873.sql @@ -0,0 +1,8 @@ +declare + object_exists exception; + pragma exception_init (object_exists , -02275); +begin + execute immediate + 'ALTER TABLE BPE MODIFY (RETORNO_ID VARCHAR2(50 BYTE))'; + exception when object_exists then null; +end; \ No newline at end of file