23 lines
848 B
C#
23 lines
848 B
C#
|
namespace Weee.Migrations
|
|||
|
{
|
|||
|
using System;
|
|||
|
using System.Data.Entity.Migrations;
|
|||
|
|
|||
|
public partial class add3ARnGWPidColumn : DbMigration
|
|||
|
{
|
|||
|
public override void Up()
|
|||
|
{
|
|||
|
AddColumn("dbo.LCACommonSurveyForm_FireEquipments", "ARnGWPid", c => c.Int(nullable:true));
|
|||
|
AddColumn("dbo.OrganizationLCAFabSurveyForm_OtherCompounds", "ARnGWPid", c => c.Int(nullable: true));
|
|||
|
AddColumn("dbo.LCACommonSurveyForm_Refrigerants", "ARnGWPid", c => c.Int(nullable: true));
|
|||
|
}
|
|||
|
|
|||
|
public override void Down()
|
|||
|
{
|
|||
|
DropColumn("dbo.LCACommonSurveyForm_Refrigerants", "ARnGWPid");
|
|||
|
DropColumn("dbo.OrganizationLCAFabSurveyForm_OtherCompounds", "ARnGWPid");
|
|||
|
DropColumn("dbo.LCACommonSurveyForm_FireEquipments", "ARnGWPid");
|
|||
|
}
|
|||
|
}
|
|||
|
}
|