From ac0099efa05f1ba3d8785b97057df3b42006d4ad Mon Sep 17 00:00:00 2001 From: Heng Sin Low Date: Thu, 26 Sep 2013 11:29:20 +0800 Subject: [PATCH] #1002868 IDEMPIERE-1188 Invoice Price Variance for Average PO Costing. Fixed syntax error for oracle script. --- migration/i1.0c-release/oracle/201309250432_IDEMPIERE-1188.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/migration/i1.0c-release/oracle/201309250432_IDEMPIERE-1188.sql b/migration/i1.0c-release/oracle/201309250432_IDEMPIERE-1188.sql index df26c6f8d5..fe27ddb047 100644 --- a/migration/i1.0c-release/oracle/201309250432_IDEMPIERE-1188.sql +++ b/migration/i1.0c-release/oracle/201309250432_IDEMPIERE-1188.sql @@ -4,7 +4,7 @@ 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 +ALTER TABLE M_CostDetail ADD CONSTRAINT MCostDetail_MatchInv FOREIGN KEY(M_MatchInv_ID) REFERENCES M_MatchInv(M_MatchInv_ID) ; SELECT register_migration_script('201309250432_IDEMPIERE-1188.sql') FROM dual