using Microsoft.EntityFrameworkCore.Migrations; #nullable disable namespace Jellyfin.Server.Implementations.Migrations { /// public partial class ResetJournalMode : Migration { /// protected override void Up(MigrationBuilder migrationBuilder) { // Resets journal mode to WAL for users that have created their database during 10.11-RC1 or 2 migrationBuilder.Sql("PRAGMA journal_mode = 'WAL';", true); } /// protected override void Down(MigrationBuilder migrationBuilder) { } } }