demo20230512/Migrations/202212280409028_add3ARnGWPidColumns.cs
2023-05-12 10:20:28 +08:00

23 lines
850 B
C#

namespace Weee.Migrations
{
using System;
using System.Data.Entity.Migrations;
public partial class add3ARnGWPidColumns : 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");
}
}
}