Files
MileageTraker/Web/Migrations/201303051835510_AddLogNotes.cs
T
2013-03-05 15:09:21 -05:00

18 lines
380 B
C#

namespace MileageTraker.Web.Migrations
{
using System.Data.Entity.Migrations;
public partial class AddLogNotes : DbMigration
{
public override void Up()
{
AddColumn("Log", "Notes", c => c.String(maxLength: 64));
}
public override void Down()
{
DropColumn("Log", "Notes");
}
}
}