namespace Weee.Migrations { using System; using System.Data.Entity.Migrations; public partial class updateLCA : DbMigration { public override void Up() { DropForeignKey("dbo.OrganizationLCAFabSurveyForm_OtherCompounds", "LCAID", "dbo.OrganizationLCA"); AddForeignKey("dbo.OrganizationLCAFabSurveyForm_OtherCompounds", "LCAID", "dbo.LCAs", "ID", cascadeDelete: true); } public override void Down() { DropForeignKey("dbo.OrganizationLCAFabSurveyForm_OtherCompounds", "LCAID", "dbo.LCAs"); AddForeignKey("dbo.OrganizationLCAFabSurveyForm_OtherCompounds", "LCAID", "dbo.OrganizationLCA", "ID"); } } }