2020-05-02 22:32:22 +00: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-15 16:51:18 +00:00
|
|
|
optionsBuilder.UseSqlite("Data Source=jellyfin.db");
|
2020-05-02 22:32:22 +00:00
|
|
|
|
|
|
|
return new JellyfinDb(optionsBuilder.Options);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|