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

19 lines
463 B
C#

namespace Weee.Migrations
{
using System;
using System.Data.Entity.Migrations;
public partial class ProductLCAaddDistributedKgCO2e : DbMigration
{
public override void Up()
{
AddColumn("dbo.ProductLCA", "DistributeKgCO2e", c => c.Decimal(precision: 24, scale: 12));
}
public override void Down()
{
DropColumn("dbo.ProductLCA", "DistributeKgCO2e");
}
}
}