21 lines
600 B
C#
21 lines
600 B
C#
namespace Weee.Migrations
|
|
{
|
|
using System;
|
|
using System.Data.Entity.Migrations;
|
|
|
|
public partial class addLCAdataTemplateFields : DbMigration
|
|
{
|
|
public override void Up()
|
|
{
|
|
AddColumn("dbo.LCAs", "LCAdataRptUrl", c => c.String());
|
|
AddColumn("dbo.DocExcelTemplates", "IsLCAdataDefaultTemplate", c => c.Boolean(nullable: false));
|
|
}
|
|
|
|
public override void Down()
|
|
{
|
|
DropColumn("dbo.DocExcelTemplates", "IsLCAdataDefaultTemplate");
|
|
DropColumn("dbo.LCAs", "LCAdataRptUrl");
|
|
}
|
|
}
|
|
}
|