21 lines
728 B
C#
21 lines
728 B
C#
namespace Weee.Migrations
|
|
{
|
|
using System;
|
|
using System.Data.Entity.Migrations;
|
|
|
|
public partial class add2paraSource : DbMigration
|
|
{
|
|
public override void Up()
|
|
{
|
|
AddColumn("dbo.LCACommonSurveyForm_SteamUsages", "FactorSource", c => c.String(unicode: true, defaultValue: "", nullable: true));
|
|
AddColumn("dbo.ProductLCAFabSurveyForm_Wastes", "ParameterSource", c => c.String(unicode: true, defaultValue: "", nullable: true));
|
|
}
|
|
|
|
public override void Down()
|
|
{
|
|
DropColumn("dbo.ProductLCAFabSurveyForm_Wastes", "ParameterSource");
|
|
DropColumn("dbo.LCACommonSurveyForm_SteamUsages", "FactorSource");
|
|
}
|
|
}
|
|
}
|