21 lines
576 B
C#
21 lines
576 B
C#
namespace Weee.Migrations
|
|
{
|
|
using System;
|
|
using System.Data.Entity.Migrations;
|
|
|
|
public partial class addLcaCompanyColumns : DbMigration
|
|
{
|
|
public override void Up()
|
|
{
|
|
AddColumn("dbo.Companies", "firstActivatedDate", c => c.DateTime());
|
|
AddColumn("dbo.LCAs", "listReportGeneratedTime", c => c.DateTime());
|
|
}
|
|
|
|
public override void Down()
|
|
{
|
|
DropColumn("dbo.LCAs", "listReportGeneratedTime");
|
|
DropColumn("dbo.Companies", "firstActivatedDate");
|
|
}
|
|
}
|
|
}
|