123456789101112131415161718 |
- namespace EVCB_OCPP.Domain.MainDBContextMigrations
- {
- using System;
- using System.Data.Entity.Migrations;
-
- public partial class Modify_Transaction_FeeLength : DbMigration
- {
- public override void Up()
- {
- AlterColumn("dbo.TransactionRecord", "Fee", c => c.String(maxLength: 1500));
- }
-
- public override void Down()
- {
- AlterColumn("dbo.TransactionRecord", "Fee", c => c.String(maxLength: 500));
- }
- }
- }
|