fixes bug#22864
dev:lucas qua: git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/BD/FlyWay/trunk@108159 d1611594-4594-4d17-8e1d-87c2c4800839master
parent
9c050dc58b
commit
903b4de862
|
@ -0,0 +1,31 @@
|
|||
declare
|
||||
column_exists exception;
|
||||
pragma exception_init (column_exists , -01430);
|
||||
begin
|
||||
execute immediate 'ALTER TABLE CATEGORIA_DESCUENTO MODIFY (TIEMPOACTIVAR NUMBER(7, 0) )';
|
||||
exception when column_exists then null;
|
||||
end;
|
||||
/
|
||||
declare
|
||||
column_exists exception;
|
||||
pragma exception_init (column_exists , -01430);
|
||||
begin
|
||||
execute immediate 'ALTER TABLE CATEGORIA_DESCUENTO MODIFY (TIEMPODESACTIVAR NUMBER(7, 0) )';
|
||||
exception when column_exists then null;
|
||||
end;
|
||||
/
|
||||
declare
|
||||
column_exists exception;
|
||||
pragma exception_init (column_exists , -01430);
|
||||
begin
|
||||
execute immediate 'ALTER TABLE CATEGORIA_DESCUENTO MODIFY (TIEMPOACTIVAR2 NUMBER(7, 0) )';
|
||||
exception when column_exists then null;
|
||||
end;
|
||||
/
|
||||
declare
|
||||
column_exists exception;
|
||||
pragma exception_init (column_exists , -01430);
|
||||
begin
|
||||
execute immediate 'ALTER TABLE CATEGORIA_DESCUENTO MODIFY (TIEMPODESACTIVAR2 NUMBER(7, 0) )';
|
||||
exception when column_exists then null;
|
||||
end;
|
Loading…
Reference in New Issue