21 lines
715 B
C#
21 lines
715 B
C#
|
namespace Weee.Migrations
|
|||
|
{
|
|||
|
using System;
|
|||
|
using System.Data.Entity.Migrations;
|
|||
|
|
|||
|
public partial class removeFKwasteTransportPara : DbMigration
|
|||
|
{
|
|||
|
public override void Up()
|
|||
|
{
|
|||
|
DropForeignKey("dbo.ProductLCAFabSurveyForm_WasteTransports", "ParameterID", "dbo.NonYearlyParameters");
|
|||
|
DropIndex("dbo.ProductLCAFabSurveyForm_WasteTransports", new[] { "ParameterID" });
|
|||
|
}
|
|||
|
|
|||
|
public override void Down()
|
|||
|
{
|
|||
|
CreateIndex("dbo.ProductLCAFabSurveyForm_WasteTransports", "ParameterID");
|
|||
|
AddForeignKey("dbo.ProductLCAFabSurveyForm_WasteTransports", "ParameterID", "dbo.NonYearlyParameters", "ID");
|
|||
|
}
|
|||
|
}
|
|||
|
}
|