Fixes Bug #0009192
git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/BD/FlyWay/trunk@71423 d1611594-4594-4d17-8e1d-87c2c4800839master
parent
422bc1df4d
commit
07fd4a93dc
|
@ -1,3 +1,20 @@
|
|||
ALTER TABLE SEGURO_KM ADD TIPO_SEGURO varchar2(10);
|
||||
ALTER TABLE TARIFA ADD IMPORTETPP number(7,2);
|
||||
ALTER TABLE TARIFA_OFICIAL ADD IMPORTETPP number(7,2);
|
||||
declare
|
||||
object_exists exception;
|
||||
pragma exception_init (object_exists , -01430);
|
||||
begin
|
||||
execute immediate 'ALTER TABLE SEGURO_KM ADD TIPO_SEGURO varchar2(10);';
|
||||
end;
|
||||
/
|
||||
declare
|
||||
object_exists exception;
|
||||
pragma exception_init (object_exists , -01430);
|
||||
begin
|
||||
execute immediate 'ALTER TABLE TARIFA ADD IMPORTETPP number(7,2);';
|
||||
end;
|
||||
/
|
||||
declare
|
||||
object_exists exception;
|
||||
pragma exception_init (object_exists , -01430);
|
||||
begin
|
||||
execute immediate 'ALTER TABLE TARIFA_OFICIAL ADD IMPORTETPP number(7,2);';
|
||||
end;
|
Loading…
Reference in New Issue