25 lines
1.1 KiB
C#
25 lines
1.1 KiB
C#
|
namespace Weee.Migrations
|
|||
|
{
|
|||
|
using System;
|
|||
|
using System.Data.Entity.Migrations;
|
|||
|
|
|||
|
public partial class add_OtherCompounds_factors : DbMigration
|
|||
|
{
|
|||
|
public override void Up()
|
|||
|
{
|
|||
|
AddColumn("dbo.ProductLCAFabSurveyForm_OtherCompounds", "GWPFactor", c => c.Decimal(precision: 24, scale: 12));
|
|||
|
AddColumn("dbo.ProductLCAFabSurveyForm_OtherCompounds", "CO2Factor", c => c.Decimal(precision: 24, scale: 12));
|
|||
|
AddColumn("dbo.OrganizationLCAFabSurveyForm_OtherCompounds", "GWPFactor", c => c.Decimal(precision: 24, scale: 12));
|
|||
|
AddColumn("dbo.OrganizationLCAFabSurveyForm_OtherCompounds", "CO2Factor", c => c.Decimal(precision: 24, scale: 12));
|
|||
|
}
|
|||
|
|
|||
|
public override void Down()
|
|||
|
{
|
|||
|
DropColumn("dbo.OrganizationLCAFabSurveyForm_OtherCompounds", "CO2Factor");
|
|||
|
DropColumn("dbo.OrganizationLCAFabSurveyForm_OtherCompounds", "GWPFactor");
|
|||
|
DropColumn("dbo.ProductLCAFabSurveyForm_OtherCompounds", "CO2Factor");
|
|||
|
DropColumn("dbo.ProductLCAFabSurveyForm_OtherCompounds", "GWPFactor");
|
|||
|
}
|
|||
|
}
|
|||
|
}
|