jellyfin/Jellyfin.Server.Implementat.../Migrations/DesignTimeJellyfinDbFactory.cs

21 lines
698 B
C#
Raw Normal View History

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