19 lines
475 B
C#
19 lines
475 B
C#
namespace Weee.Migrations
|
|
{
|
|
using System;
|
|
using System.Data.Entity.Migrations;
|
|
|
|
public partial class productOtherCompoundAddColumns : DbMigration
|
|
{
|
|
public override void Up()
|
|
{
|
|
AddColumn("dbo.ProductLCAFabSurveyForm_OtherCompounds", "ARnGWPid", c => c.Int());
|
|
}
|
|
|
|
public override void Down()
|
|
{
|
|
DropColumn("dbo.ProductLCAFabSurveyForm_OtherCompounds", "ARnGWPid");
|
|
}
|
|
}
|
|
}
|