19 lines
483 B
C#
19 lines
483 B
C#
|
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");
|
|||
|
}
|
|||
|
}
|
|||
|
}
|