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