23 lines
810 B
C#
23 lines
810 B
C#
namespace Weee.Migrations
|
|
{
|
|
using System;
|
|
using System.Data.Entity.Migrations;
|
|
|
|
public partial class ProductLCAAddColumn : DbMigration
|
|
{
|
|
public override void Up()
|
|
{
|
|
AddColumn("dbo.ProductLCA", "FabProductionPcs", c => c.Decimal(precision: 24, scale: 12));
|
|
AddColumn("dbo.ProductLCA", "FabProductionEconomic", c => c.Decimal(precision: 24, scale: 12));
|
|
AddColumn("dbo.ProductLCA", "ProductProductionEconomic", c => c.Decimal(precision: 24, scale: 12));
|
|
}
|
|
|
|
public override void Down()
|
|
{
|
|
DropColumn("dbo.ProductLCA", "ProductProductionEconomic");
|
|
DropColumn("dbo.ProductLCA", "FabProductionEconomic");
|
|
DropColumn("dbo.ProductLCA", "FabProductionPcs");
|
|
}
|
|
}
|
|
}
|