using Microsoft.EntityFrameworkCore.Migrations; namespace Ombi.Store.Migrations { public partial class RequestIdOnPlexContent : Migration { protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.AddColumn( name: "RequestId", table: "PlexServerContent", nullable: true); } protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.DropColumn( name: "RequestId", table: "PlexServerContent"); } } }