123456789101112131415161718 |
- namespace EVCB_OCPP.Domain.MainDBContextMigrations
- {
- using System;
- using System.Data.Entity.Migrations;
-
- public partial class ModifiedServerMessageInMessageLength : DbMigration
- {
- public override void Up()
- {
- AlterColumn("dbo.ServerMessage", "InMessage", c => c.String(maxLength: 3000));
- }
-
- public override void Down()
- {
- AlterColumn("dbo.ServerMessage", "InMessage", c => c.String(maxLength: 1000));
- }
- }
- }
|