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
master
gleimar 2018-07-04 13:40:28 +00:00
parent 0a164f4d3f
commit 610731d3ed
1 changed files with 1 additions and 1 deletions

View File

@ -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;
/