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())