Skip to content

Instantly share code, notes, and snippets.

@mgroves
Created April 5, 2014 21:51
Show Gist options
  • Select an option

  • Save mgroves/9998540 to your computer and use it in GitHub Desktop.

Select an option

Save mgroves/9998540 to your computer and use it in GitHub Desktop.
[Migration(2)]
public class AddUrlToUserTable : Migration
{
public override void Up()
{
Alter.Table("myusertable")
.AddColumn("url").AsString(150).Nullable();
}
public override void Down()
{
Delete.Column("url")
.FromTable("myusertable");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment