201907260708307_Modified_ServerMessageTable.cs 495 B

123456789101112131415161718
  1. namespace EVCB_OCPP.Domain.MainDBContextMigrations
  2. {
  3. using System;
  4. using System.Data.Entity.Migrations;
  5. public partial class Modified_ServerMessageTable : DbMigration
  6. {
  7. public override void Up()
  8. {
  9. AlterColumn("dbo.ServerMessage", "OutAction", c => c.String(maxLength: 30));
  10. }
  11. public override void Down()
  12. {
  13. AlterColumn("dbo.ServerMessage", "OutAction", c => c.String(maxLength: 15));
  14. }
  15. }
  16. }