aboutsummaryrefslogtreecommitdiff
path: root/Jellyfin.Database/Jellyfin.Database.Providers.PgSql/Migrations/PgSqlDesignTimeJellyfinDbFactory.cs
diff options
context:
space:
mode:
authorJPVenson <github@jpb.email>2025-01-27 18:21:47 +0000
committerJPVenson <github@jpb.email>2025-01-27 18:21:47 +0000
commitce00bc076e9a97197e7e7e83276013518ce84ec5 (patch)
treec8f4ca5cb439d0c739aa84e16b45a57473fafb19 /Jellyfin.Database/Jellyfin.Database.Providers.PgSql/Migrations/PgSqlDesignTimeJellyfinDbFactory.cs
parent433640d98534667602bfaac08ce7cdb600a8377b (diff)
Fixed postgres sql provider
Diffstat (limited to 'Jellyfin.Database/Jellyfin.Database.Providers.PgSql/Migrations/PgSqlDesignTimeJellyfinDbFactory.cs')
-rw-r--r--Jellyfin.Database/Jellyfin.Database.Providers.PgSql/Migrations/PgSqlDesignTimeJellyfinDbFactory.cs3
1 files changed, 1 insertions, 2 deletions
diff --git a/Jellyfin.Database/Jellyfin.Database.Providers.PgSql/Migrations/PgSqlDesignTimeJellyfinDbFactory.cs b/Jellyfin.Database/Jellyfin.Database.Providers.PgSql/Migrations/PgSqlDesignTimeJellyfinDbFactory.cs
index 8f5e2e82b..bf949d570 100644
--- a/Jellyfin.Database/Jellyfin.Database.Providers.PgSql/Migrations/PgSqlDesignTimeJellyfinDbFactory.cs
+++ b/Jellyfin.Database/Jellyfin.Database.Providers.PgSql/Migrations/PgSqlDesignTimeJellyfinDbFactory.cs
@@ -1,4 +1,3 @@
-using Jellyfin.Database.Providers.SqLite;
using Jellyfin.Server.Implementations;
using Microsoft.EntityFrameworkCore;
using Microsoft.EntityFrameworkCore.Design;
@@ -20,7 +19,7 @@ namespace Jellyfin.Database.Providers.PgSql
return new JellyfinDbContext(
optionsBuilder.Options,
NullLogger<JellyfinDbContext>.Instance,
- new SqliteDatabaseProvider(null!, NullLogger<SqliteDatabaseProvider>.Instance));
+ new PgSqlDatabaseProvider(null!, NullLogger<PgSqlDatabaseProvider>.Instance));
}
}
}