From 610731d3ed37526b4fb3a29fd5c6bcb5495c3408 Mon Sep 17 00:00:00 2001 From: gleimar Date: Wed, 4 Jul 2018 13:40:28 +0000 Subject: [PATCH] fixes bug#11352 qua:wallysson dev:gleimar git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/BD/FlyWay/trunk@83113 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 e68ba279a..e6416ab53 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_EVENTO_EXTRA ADD (ERRO VARCHAR2(4000 BYTE))'; exception when column_exists then null; end; /