123456789101112131415161718 |
- 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" });
- }
- }
- }
|