namespace EVCB_OCPP.Domain.MainDBContextMigrations { using System; using System.Data.Entity.Migrations; public partial class Add_ChargeBoxId1 : DbMigration { public override void Up() { CreateIndex("dbo.Machine", "ChargeBoxId", unique: true); } public override void Down() { DropIndex("dbo.Machine", new[] { "ChargeBoxId" }); } } }