demo20230512/Migrations/202211300544411_addYearlyParaTypeHeatV.cs

19 lines
483 B
C#
Raw Normal View History

2023-05-12 10:20:28 +08:00
namespace Weee.Migrations
{
using System;
using System.Data.Entity.Migrations;
public partial class addYearlyParaTypeHeatV : DbMigration
{
public override void Up()
{
AddColumn("dbo.YearlyParameterTypes", "oriHeatValue", c => c.Decimal(nullable: true, precision: 24, scale: 12));
}
public override void Down()
{
DropColumn("dbo.YearlyParameterTypes", "oriHeatValue");
}
}
}