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