2020-05-02 15:32:22 -07:00
|
|
|
using Microsoft.EntityFrameworkCore;
|
|
|
|
using Microsoft.EntityFrameworkCore.Design;
|
|
|
|
|
|
|
|
namespace Jellyfin.Server.Implementations.Migrations
|
|
|
|
{
|
|
|
|
/// <summary>
|
|
|
|
/// The design time factory for <see cref="JellyfinDb"/>.
|
|
|
|
/// This is only used for the creation of migrations and not during runtime.
|
|
|
|
/// </summary>
|
|
|
|
internal class DesignTimeJellyfinDbFactory : IDesignTimeDbContextFactory<JellyfinDb>
|
|
|
|
{
|
|
|
|
public JellyfinDb CreateDbContext(string[] args)
|
|
|
|
{
|
|
|
|
var optionsBuilder = new DbContextOptionsBuilder<JellyfinDb>();
|
2020-05-14 14:13:45 -07:00
|
|
|
optionsBuilder.UseSqlite(
|
|
|
|
"Data Source=jellyfin.db",
|
|
|
|
opt => opt.MigrationsAssembly("Jellyfin.Migrations"));
|
2020-05-02 15:32:22 -07:00
|
|
|
|
|
|
|
return new JellyfinDb(optionsBuilder.Options);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|