From 57d077d08e66c41247b19161176571c70a2318c9 Mon Sep 17 00:00:00 2001 From: JPVenson Date: Wed, 23 Jul 2025 02:09:31 +0300 Subject: [PATCH] Supress transaction (#14514) --- .../Migrations/20250714044826_ResetJournalMode.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Jellyfin.Database/Jellyfin.Database.Providers.Sqlite/Migrations/20250714044826_ResetJournalMode.cs b/src/Jellyfin.Database/Jellyfin.Database.Providers.Sqlite/Migrations/20250714044826_ResetJournalMode.cs index 0b6e3e15fe..23cb0c8ba5 100644 --- a/src/Jellyfin.Database/Jellyfin.Database.Providers.Sqlite/Migrations/20250714044826_ResetJournalMode.cs +++ b/src/Jellyfin.Database/Jellyfin.Database.Providers.Sqlite/Migrations/20250714044826_ResetJournalMode.cs @@ -11,7 +11,7 @@ namespace Jellyfin.Server.Implementations.Migrations 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';"); + migrationBuilder.Sql("PRAGMA journal_mode = 'WAL';", true); } ///