1234567891011121314151617181920 |
- namespace EVCB_OCPP.Domain.ConnectionLogContextMigrations
- {
- using System;
- using System.Data.Entity.Migrations;
-
- public partial class Modified_Length : DbMigration
- {
- public override void Up()
- {
- AlterColumn("dbo.MachineConnectionLog", "Data", c => c.String(maxLength: 3600));
- AlterColumn("dbo.MachineConnectionLog", "Msg", c => c.String(maxLength: 200));
- }
-
- public override void Down()
- {
- AlterColumn("dbo.MachineConnectionLog", "Msg", c => c.String());
- AlterColumn("dbo.MachineConnectionLog", "Data", c => c.String(maxLength: 4000));
- }
- }
- }
|