19 lines
476 B
C#
19 lines
476 B
C#
|
namespace Weee.Migrations
|
|||
|
{
|
|||
|
using System;
|
|||
|
using System.Data.Entity.Migrations;
|
|||
|
|
|||
|
public partial class RefrigerantAddConstraint : DbMigration
|
|||
|
{
|
|||
|
public override void Up()
|
|||
|
{
|
|||
|
CreateIndex("dbo.LCACommonSurveyForm_Refrigerants", "ARnGWPid");
|
|||
|
}
|
|||
|
|
|||
|
public override void Down()
|
|||
|
{
|
|||
|
DropForeignKey("dbo.LCACommonSurveyForm_Refrigerants", "ARnGWPid", "dbo.AssessmentReportGWP");
|
|||
|
}
|
|||
|
}
|
|||
|
}
|