fixesbug#10374

dev:thiago
qua:victor

git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/BD/FlyWay/trunk@87689 d1611594-4594-4d17-8e1d-87c2c4800839
master
victor 2018-12-05 18:40:56 +00:00
parent f72ff171a9
commit 82f2272bf7
1 changed files with 13 additions and 0 deletions

View File

@ -0,0 +1,13 @@
declare
column_exists exception;
pragma exception_init (column_exists , -01430);
begin
execute immediate 'alter table corrida_tramo modify (corridatramo_id number(10,0))';
exception when column_exists then null;
end;