19 lines
463 B
C#
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");
|
|
}
|
|
}
|
|
}
|