using Microsoft.EntityFrameworkCore.Migrations; #nullable disable namespace API.Data.Migrations { /// public partial class OpdsSettings : Migration { /// protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.AddColumn( name: "OpdsPreferences", table: "AppUserPreferences", type: "TEXT", nullable: true, defaultValue: "{\"EmbedProgressIndicator\":true,\"IncludeContinueFrom\":true}"); } /// protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.DropColumn( name: "OpdsPreferences", table: "AppUserPreferences"); } } }