namespace HealthchoiceMVC.Migrations { using System; using System.Data.Entity.Migrations; public partial class _20191005b : DbMigration { public override void Up() { CreateTable( "dbo.PracticeInvite", c => new { PracticeInviteId = c.Int(nullable: false, identity: true), PracticeId = c.Int(nullable: false), InviteEmail = c.String(nullable: false), InviteName = c.String(nullable: false), DateSent = c.DateTime(nullable: false), }) .PrimaryKey(t => t.PracticeInviteId); } public override void Down() { DropTable("dbo.PracticeInvite"); } } }