201907310323370_Add_ChargeBoxId1.cs 438 B

123456789101112131415161718
  1. namespace EVCB_OCPP.Domain.MainDBContextMigrations
  2. {
  3. using System;
  4. using System.Data.Entity.Migrations;
  5. public partial class Add_ChargeBoxId1 : DbMigration
  6. {
  7. public override void Up()
  8. {
  9. CreateIndex("dbo.Machine", "ChargeBoxId", unique: true);
  10. }
  11. public override void Down()
  12. {
  13. DropIndex("dbo.Machine", new[] { "ChargeBoxId" });
  14. }
  15. }
  16. }