Add notes

This commit is contained in:
2013-03-05 15:09:21 -05:00
parent 47a60965fe
commit ff0b18a9fd
12 changed files with 76 additions and 4 deletions
@@ -0,0 +1,17 @@
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");
}
}
}