mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-05-24 02:02:29 -04:00
17 lines
559 B
C#
17 lines
559 B
C#
using Jellyfin.Server.Implementations.Migrations;
|
|
using Microsoft.EntityFrameworkCore;
|
|
using Xunit;
|
|
|
|
namespace Jellyfin.Server.Implementations.Tests.EfMigrations;
|
|
|
|
public class EfMigrationTests
|
|
{
|
|
[Fact]
|
|
public void CheckForUnappliedMigrations_SqLite()
|
|
{
|
|
var dbDesignContext = new SqliteDesignTimeJellyfinDbFactory();
|
|
var context = dbDesignContext.CreateDbContext([]);
|
|
Assert.False(context.Database.HasPendingModelChanges(), "There are unapplied changes to the EFCore model for SQLite. Please create a Migration.");
|
|
}
|
|
}
|