diff --git a/migration/i1.0c-release/oracle/201309250432_IDEMPIERE-1188.sql b/migration/i1.0c-release/oracle/201309250432_IDEMPIERE-1188.sql new file mode 100644 index 0000000000..df26c6f8d5 --- /dev/null +++ b/migration/i1.0c-release/oracle/201309250432_IDEMPIERE-1188.sql @@ -0,0 +1,11 @@ +SET SQLBLANKLINES ON +SET DEFINE OFF + +UPDATE M_CostDetail SET M_MatchInv_ID=NULL WHERE M_MatchInv_ID IS NOT NULL AND NOT EXISTS (SELECT a.M_MatchInv_ID FROM M_MatchInv a WHERE a.M_MatchInv_ID=M_CostDetail.M_MatchInv_ID) +; + +ALTER TABLE M_CostDetail ADD CONSTRAINT MCostDetail_MatchInv FOREIGN KEY(M_MatchInv_ID) REFERENCES M_MatchInv(M_MatchInv_ID) ON DELETE RESTRICT +; + +SELECT register_migration_script('201309250432_IDEMPIERE-1188.sql') FROM dual +; diff --git a/migration/i1.0c-release/postgresql/201309250432_IDEMPIERE-1188.sql b/migration/i1.0c-release/postgresql/201309250432_IDEMPIERE-1188.sql new file mode 100644 index 0000000000..966f82036c --- /dev/null +++ b/migration/i1.0c-release/postgresql/201309250432_IDEMPIERE-1188.sql @@ -0,0 +1,8 @@ +UPDATE M_CostDetail SET M_MatchInv_ID=NULL WHERE M_MatchInv_ID IS NOT NULL AND NOT EXISTS (SELECT a.M_MatchInv_ID FROM M_MatchInv a WHERE a.M_MatchInv_ID=M_CostDetail.M_MatchInv_ID) +; + +ALTER TABLE M_CostDetail ADD CONSTRAINT MCostDetail_MatchInv FOREIGN KEY(M_MatchInv_ID) REFERENCES M_MatchInv(M_MatchInv_ID) ON DELETE RESTRICT DEFERRABLE INITIALLY DEFERRED +; + +SELECT register_migration_script('201309250432_IDEMPIERE-1188.sql') FROM dual +;