19 lines
476 B
C#
19 lines
476 B
C#
|
namespace Weee.Migrations
|
|||
|
{
|
|||
|
using System;
|
|||
|
using System.Data.Entity.Migrations;
|
|||
|
|
|||
|
public partial class add_Refrigerants_UsedMonth : DbMigration
|
|||
|
{
|
|||
|
public override void Up()
|
|||
|
{
|
|||
|
AddColumn("dbo.LCACommonSurveyForm_Refrigerants", "UsedMonth", c => c.Int(nullable: false));
|
|||
|
}
|
|||
|
|
|||
|
public override void Down()
|
|||
|
{
|
|||
|
DropColumn("dbo.LCACommonSurveyForm_Refrigerants", "UsedMonth");
|
|||
|
}
|
|||
|
}
|
|||
|
}
|