demo20230512/Migrations/202210140322008_addYearlyParameterWarmGasType.cs

19 lines
457 B
C#
Raw Permalink Normal View History

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