Add purpose editing

This commit is contained in:
2013-03-07 19:28:00 -05:00
parent ff0b18a9fd
commit 8662b6ad7e
12 changed files with 236 additions and 2 deletions
@@ -0,0 +1,17 @@
namespace MileageTraker.Web.Migrations
{
using System.Data.Entity.Migrations;
public partial class UpdatePurposeRequired : DbMigration
{
public override void Up()
{
AlterColumn("PurposeType", "Purpose", c => c.String(nullable: false));
}
public override void Down()
{
AlterColumn("PurposeType", "Purpose", c => c.String());
}
}
}