12 lines
373 B
SQL
12 lines
373 B
SQL
declare
|
|
object_exists exception;
|
|
except_00957 exception;
|
|
|
|
pragma exception_init (object_exists , -01430);
|
|
pragma exception_init (except_00957 , -00957);
|
|
begin
|
|
execute immediate 'ALTER TABLE EMPRESA_IZIPAY_CONFIG RENAME COLUMN DIAS_CANCELA TO MINUTOS_CANCELA';
|
|
exception
|
|
when object_exists then null;
|
|
when except_00957 then null;
|
|
end; |