diff --git a/src/db/migration/V20180305_0925__mantis10642.sql b/src/db/migration/V20180305_0925__mantis10642.sql new file mode 100644 index 000000000..7e3ab6e8f --- /dev/null +++ b/src/db/migration/V20180305_0925__mantis10642.sql @@ -0,0 +1,13 @@ + + +begin + execute immediate 'delete from PRECIO_FIXO_PEDAGIO where PRACAPEDAGIO_ID not in (select CASETAPEAJE_ID from caseta_peaje)'; + exception when others then null; +end; +/ + +begin + execute immediate 'alter table PRECIO_FIXO_PEDAGIO add constraint PRACAPEDGAIO_CASETA foreign key("PRACAPEDAGIO_ID") references "CASETA_PEAJE"("CASETAPEAJE_ID")'; + exception when others then null; +end; +/ \ No newline at end of file