123456789101112131415161718 |
- namespace EVCB_OCPP.Domain.ConnectionLogContextMigrations
- {
- using System;
- using System.Data.Entity.Migrations;
-
- public partial class Add_Fields_IsSent : DbMigration
- {
- public override void Up()
- {
- AddColumn("dbo.MachineConnectionLog", "IsSent", c => c.Boolean(nullable: false));
- }
-
- public override void Down()
- {
- DropColumn("dbo.MachineConnectionLog", "IsSent");
- }
- }
- }
|