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