1234567891011121314151617181920 |
- namespace EVCB_OCPP.Domain.ConnectionLogContextMigrations
- {
- using System;
- using System.Data.Entity.Migrations;
-
- public partial class Add_EVSE_Session_EndPoint : DbMigration
- {
- public override void Up()
- {
- AddColumn("dbo.MachineConnectionLog", "EVSEEndPoint", c => c.String(maxLength: 25));
- AddColumn("dbo.MachineConnectionLog", "Session", c => c.String(maxLength: 36));
- }
-
- public override void Down()
- {
- DropColumn("dbo.MachineConnectionLog", "Session");
- DropColumn("dbo.MachineConnectionLog", "EVSEEndPoint");
- }
- }
- }
|