201912160853002_Add_Fields_IsSent.cs 470 B

123456789101112131415161718
  1. namespace EVCB_OCPP.Domain.ConnectionLogContextMigrations
  2. {
  3. using System;
  4. using System.Data.Entity.Migrations;
  5. public partial class Add_Fields_IsSent : DbMigration
  6. {
  7. public override void Up()
  8. {
  9. AddColumn("dbo.MachineConnectionLog", "IsSent", c => c.Boolean(nullable: false));
  10. }
  11. public override void Down()
  12. {
  13. DropColumn("dbo.MachineConnectionLog", "IsSent");
  14. }
  15. }
  16. }