AdmMono/src/db/migration/V20170428_1008__mantis8884.sql

13 lines
349 B
SQL

declare
object_exists exception;
except_01451 exception;
pragma exception_init (object_exists , -01430);
pragma exception_init (except_01451 , -01451);
begin
execute immediate 'ALTER TABLE FISCAL_T2 MODIFY (FISCALIMPRESSORA_ID NULL)';
exception
when object_exists then null;
when except_01451 then null;
end;