43 lines
2.7 KiB
C#
43 lines
2.7 KiB
C#
|
namespace Weee.Migrations
|
|||
|
{
|
|||
|
using System;
|
|||
|
using System.Data.Entity.Migrations;
|
|||
|
|
|||
|
public partial class ProductLCAAddAllocation : DbMigration
|
|||
|
{
|
|||
|
public override void Up()
|
|||
|
{
|
|||
|
AddColumn("dbo.ProductLCA", "ProductAllocationWorkHour", c => c.Int(nullable: false, defaultValue: -1));
|
|||
|
AddColumn("dbo.ProductLCA", "ProductAllocationPowerUsage", c => c.Int(nullable: false, defaultValue: -1));
|
|||
|
AddColumn("dbo.ProductLCA", "ProductAllocationWaterUsage", c => c.Int(nullable: false, defaultValue: -1));
|
|||
|
AddColumn("dbo.ProductLCA", "ProductAllocationWaste", c => c.Int(nullable: false, defaultValue: -1));
|
|||
|
AddColumn("dbo.ProductLCA", "ProductAllocationWasteWater", c => c.Int(nullable: false, defaultValue: -1));
|
|||
|
AddColumn("dbo.ProductLCA", "ProductAllocationWasteTransport", c => c.Int(nullable: false, defaultValue: -1));
|
|||
|
AddColumn("dbo.ProductLCA", "ProductAllocationVehicle", c => c.Int(nullable: false, defaultValue: -1));
|
|||
|
AddColumn("dbo.ProductLCA", "ProductAllocationGasolineEquipment", c => c.Int(nullable: false, defaultValue: -1));
|
|||
|
AddColumn("dbo.ProductLCA", "ProductAllocationKitchen", c => c.Int(nullable: false, defaultValue: -1));
|
|||
|
AddColumn("dbo.ProductLCA", "ProductAllocationFireEquipment", c => c.Int(nullable: false, defaultValue: -1));
|
|||
|
AddColumn("dbo.ProductLCA", "ProductAllocationRefrigerant", c => c.Int(nullable: false, defaultValue: -1));
|
|||
|
AddColumn("dbo.ProductLCA", "ProductAllocationSteamUsage", c => c.Int(nullable: false, defaultValue: -1));
|
|||
|
AddColumn("dbo.ProductLCA", "ProductAllocationOtherCompound", c => c.Int(nullable: false, defaultValue: -1));
|
|||
|
}
|
|||
|
|
|||
|
public override void Down()
|
|||
|
{
|
|||
|
DropColumn("dbo.ProductLCA", "ProductAllocationOtherCompound");
|
|||
|
DropColumn("dbo.ProductLCA", "ProductAllocationSteamUsage");
|
|||
|
DropColumn("dbo.ProductLCA", "ProductAllocationRefrigerant");
|
|||
|
DropColumn("dbo.ProductLCA", "ProductAllocationFireEquipment");
|
|||
|
DropColumn("dbo.ProductLCA", "ProductAllocationKitchen");
|
|||
|
DropColumn("dbo.ProductLCA", "ProductAllocationGasolineEquipment");
|
|||
|
DropColumn("dbo.ProductLCA", "ProductAllocationVehicle");
|
|||
|
DropColumn("dbo.ProductLCA", "ProductAllocationWasteTransport");
|
|||
|
DropColumn("dbo.ProductLCA", "ProductAllocationWasteWater");
|
|||
|
DropColumn("dbo.ProductLCA", "ProductAllocationWaste");
|
|||
|
DropColumn("dbo.ProductLCA", "ProductAllocationWaterUsage");
|
|||
|
DropColumn("dbo.ProductLCA", "ProductAllocationPowerUsage");
|
|||
|
DropColumn("dbo.ProductLCA", "ProductAllocationWorkHour");
|
|||
|
}
|
|||
|
}
|
|||
|
}
|