Files
lmltfy/lmltfy/Migrations/201507251954543_1.cs
Tommy Parnell 439141fbb2 init
2015-07-25 18:14:53 -04:00

27 lines
642 B
C#

namespace lmltfy.Migrations
{
using System;
using System.Data.Entity.Migrations;
public partial class _1 : DbMigration
{
public override void Up()
{
CreateTable(
"dbo.lmltfy_SearchModel",
c => new
{
Url = c.String(nullable: false, maxLength: 128),
Search = c.String(maxLength: 2000),
})
.PrimaryKey(t => t.Url);
}
public override void Down()
{
DropTable("dbo.lmltfy_SearchModel");
}
}
}