19 lines
460 B
C#
19 lines
460 B
C#
namespace Weee.Migrations
|
|
{
|
|
using System;
|
|
using System.Data.Entity.Migrations;
|
|
|
|
public partial class FireEquipmentAddConstraint : DbMigration
|
|
{
|
|
public override void Up()
|
|
{
|
|
CreateIndex("dbo.LCACommonSurveyForm_FireEquipments", "ARnGWPid");
|
|
}
|
|
|
|
public override void Down()
|
|
{
|
|
DropIndex("dbo.LCACommonSurveyForm_FireEquipments", new[] { "ARnGWPid" });
|
|
}
|
|
}
|
|
}
|