fixes bug#13649

dev:alberto
qua:junia

git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/BD/FlyWay/trunk@90118 d1611594-4594-4d17-8e1d-87c2c4800839
master
gleimar 2019-02-21 15:07:33 +00:00
parent 7f3d317010
commit 0976fb7aca
1 changed files with 31 additions and 2 deletions

View File

@ -6,8 +6,37 @@ declare
begin
execute immediate 'ALTER TABLE VTABOL.TARIFA MODIFY TARIFA_ID NUMBER(10,0)';
execute immediate 'ALTER TABLE TARIFA MODIFY TARIFA_ID NUMBER(10,0)';
exception when column_exists then null;
end;
/
declare
column_exists exception;
pragma exception_init (column_exists , -01430);
begin
execute immediate 'ALTER TABLE TARIFA_CATEGORIA MODIFY TARIFA_ID NUMBER(10,0)';
exception when column_exists then null;
end;
/
declare
column_exists exception;
pragma exception_init (column_exists , -01430);
begin
execute immediate 'ALTER TABLE TARIFA_TIPOPTOVTA MODIFY TARIFA_ID NUMBER(10,0)';
exception when column_exists then null;
end;
/