AdmMono/src/db/migration/V20191023_1706__mantis16623...

19 lines
682 B
SQL

declare
object_exists exception;
except_02275 exception;
except_02270 exception;
except_02261 exception;
pragma exception_init (object_exists , -01430);
pragma exception_init (except_02275 , -02275);
pragma exception_init (except_02270 , -02270);
pragma exception_init (except_02261 , -02261);
begin
execute immediate 'ALTER TABLE INTEGRACAO_TOTVS_CORRIDA ADD CONSTRAINT INTEGRACAO_TOTVS_CORRIDA_FK1 FOREIGN KEY(CORRIDA_ID, FECCORRIDA )REFERENCES CORRIDA(CORRIDA_ID, FECCORRIDA )';
exception
when object_exists then null;
when except_02275 then null;
when except_02270 then null;
when except_02261 then null;
end;