From 0a164f4d3f414ce5a165252982d3faf33da5fd76 Mon Sep 17 00:00:00 2001 From: gleimar Date: Wed, 4 Jul 2018 13:39:53 +0000 Subject: [PATCH] fixes bug#11352 qua:wallysson dev:gleimar git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/BD/FlyWay/trunk@83112 d1611594-4594-4d17-8e1d-87c2c4800839 --- src/db/migration/V20180703_1104__mantis11325.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/db/migration/V20180703_1104__mantis11325.sql b/src/db/migration/V20180703_1104__mantis11325.sql index 244a896d7..e68ba279a 100644 --- a/src/db/migration/V20180703_1104__mantis11325.sql +++ b/src/db/migration/V20180703_1104__mantis11325.sql @@ -10,7 +10,7 @@ declare column_exists exception; pragma exception_init (column_exists , -01430); begin - execute immediate 'ALTER TABLE TIPO_EVENTRO_EXTRA ADD (ERRO VARCHAR2(4000 BYTE)))'; + execute immediate 'ALTER TABLE TIPO_EVENTRO_EXTRA ADD (ERRO VARCHAR2(4000 BYTE))'; exception when column_exists then null; end; /