namespace Project_Unite.Migrations { using System; using System.Data.Entity.Migrations; public partial class auditlogs : DbMigration { public override void Up() { CreateTable( "dbo.AuditLogs", c => new { Id = c.String(nullable: false, maxLength: 128), Level = c.Int(nullable: false), Timestamp = c.DateTime(nullable: false), UserId = c.String(), Description = c.String(), }) .PrimaryKey(t => t.Id); } public override void Down() { DropTable("dbo.AuditLogs"); } } }