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