202112060214293_Modify_Transaction_ReceiptLength.cs 507 B

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