From c1c74a5499f8084b58bbff851ea64900bf4eeb59 Mon Sep 17 00:00:00 2001 From: Bogdan Date: Sun, 28 Sep 2025 18:42:54 +0300 Subject: [PATCH] Bump minimum Postgres version to 15 for FluentMigrator --- .../Datastore/Migration/Framework/MigrationController.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/NzbDrone.Core/Datastore/Migration/Framework/MigrationController.cs b/src/NzbDrone.Core/Datastore/Migration/Framework/MigrationController.cs index 8021b13d6..d8f57c236 100644 --- a/src/NzbDrone.Core/Datastore/Migration/Framework/MigrationController.cs +++ b/src/NzbDrone.Core/Datastore/Migration/Framework/MigrationController.cs @@ -38,7 +38,7 @@ public void Migrate(string connectionString, MigrationContext migrationContext, .AddFluentMigratorCore() .Configure(cfg => cfg.IncludeUntaggedMaintenances = true) .ConfigureRunner(builder => builder - .AddPostgres() + .AddPostgres15_0() .AddNzbDroneSQLite() .WithGlobalConnectionString(connectionString) .ScanIn(Assembly.GetExecutingAssembly()).For.All())