201907250828082_Modified_Length.cs 666 B

1234567891011121314151617181920
  1. namespace EVCB_OCPP.Domain.ConnectionLogContextMigrations
  2. {
  3. using System;
  4. using System.Data.Entity.Migrations;
  5. public partial class Modified_Length : DbMigration
  6. {
  7. public override void Up()
  8. {
  9. AlterColumn("dbo.MachineConnectionLog", "Data", c => c.String(maxLength: 3600));
  10. AlterColumn("dbo.MachineConnectionLog", "Msg", c => c.String(maxLength: 200));
  11. }
  12. public override void Down()
  13. {
  14. AlterColumn("dbo.MachineConnectionLog", "Msg", c => c.String());
  15. AlterColumn("dbo.MachineConnectionLog", "Data", c => c.String(maxLength: 4000));
  16. }
  17. }
  18. }