From b5fab0c9a124ffe814a30989ec3bd604d552ba35 Mon Sep 17 00:00:00 2001 From: alberto Date: Wed, 13 Jun 2018 17:29:19 +0000 Subject: [PATCH] =?UTF-8?q?Corre=C3=A7=C3=B5es=20na=20auditoria=20bug#1113?= =?UTF-8?q?0=20dev:trevezani=20qua:trevezani?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/BD/FlyWay/trunk@82599 d1611594-4594-4d17-8e1d-87c2c4800839 --- src/db/migration/V20180613_1420__mantis11130.sql | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 src/db/migration/V20180613_1420__mantis11130.sql diff --git a/src/db/migration/V20180613_1420__mantis11130.sql b/src/db/migration/V20180613_1420__mantis11130.sql new file mode 100644 index 000000000..7b6ee9536 --- /dev/null +++ b/src/db/migration/V20180613_1420__mantis11130.sql @@ -0,0 +1,8 @@ +declare + object_exists exception; + pragma exception_init (object_exists , -02275); +begin + execute immediate + 'ALTER TABLE MD_LOG MODIFY (OBSERVACAO VARCHAR2(300))'; + exception when object_exists then null; +end; \ No newline at end of file