demo20230512/Migrations/202212280358573_add3ARnGWPidColumn.cs

23 lines
848 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 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");
}
}
}