fixes bug#13649
dev:alberto qua:junia git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/BD/FlyWay/trunk@90119 d1611594-4594-4d17-8e1d-87c2c4800839master
parent
0976fb7aca
commit
3e625ad57a
|
@ -12,31 +12,3 @@ begin
|
||||||
|
|
||||||
end;
|
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;
|
|
||||||
/
|
|
|
@ -0,0 +1,29 @@
|
||||||
|
|
||||||
|
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;
|
||||||
|
/
|
Loading…
Reference in New Issue