Removed pgsql from refactor

This commit is contained in:
JPVenson
2025-02-19 18:21:23 +00:00
parent 8b07c1f53d
commit ddc20b74bf
12 changed files with 1 additions and 6226 deletions

View File

@@ -1,6 +1,3 @@
using System;
using System.Threading.Tasks;
using Jellyfin.Database.Providers.PgSql;
using Jellyfin.Server.Implementations.Migrations;
using Microsoft.EntityFrameworkCore;
using Xunit;
@@ -9,14 +6,6 @@ namespace Jellyfin.Server.Implementations.Tests.EfMigrations;
public class EfMigrationTests
{
[Fact]
public void CheckForUnappliedMigrations_PgSQL()
{
var dbDesignContext = new PgSqlDesignTimeJellyfinDbFactory();
var context = dbDesignContext.CreateDbContext([]);
Assert.False(context.Database.HasPendingModelChanges(), "There are unapplied changes to the EFCore model for PgSQL. Please create a Migration.");
}
[Fact]
public void CheckForUnappliedMigrations_SqLite()
{