19 lines
477 B
C#
19 lines
477 B
C#
namespace Weee.Migrations
|
|
{
|
|
using System;
|
|
using System.Data.Entity.Migrations;
|
|
|
|
public partial class AddProductInventoryParameterDataColumn : DbMigration
|
|
{
|
|
public override void Up()
|
|
{
|
|
AddColumn("dbo.ProductInventoryParameterData", "ParameterID", c => c.Int(nullable: true));
|
|
}
|
|
|
|
public override void Down()
|
|
{
|
|
DropColumn("dbo.ProductInventoryParameterData", "ParameterID");
|
|
}
|
|
}
|
|
}
|