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