using Microsoft.EntityFrameworkCore; using Microsoft.EntityFrameworkCore.Design; namespace Jellyfin.Server.Implementations.Migrations { /// /// The design time factory for . /// This is only used for the creation of migrations and not during runtime. /// internal class DesignTimeJellyfinDbFactory : IDesignTimeDbContextFactory { public JellyfinDbContext CreateDbContext(string[] args) { var optionsBuilder = new DbContextOptionsBuilder(); optionsBuilder.UseSqlite("Data Source=jellyfin.db"); return new JellyfinDbContext(optionsBuilder.Options); } } }