diff options
| author | Patrick Barron <barronpm@gmail.com> | 2020-05-02 18:32:22 -0400 |
|---|---|---|
| committer | Patrick Barron <barronpm@gmail.com> | 2020-05-02 18:32:22 -0400 |
| commit | 032de931b14ded24bb1098a7eeec3d84561206e2 (patch) | |
| tree | 9688d691481c63c6772dbc4b262cab61f7e3366d /Jellyfin.Server.Implementations/Migrations/DesignTimeJellyfinDbFactory.cs | |
| parent | 1927d0e23cfadf5ee203f4b4e9a3a306ad1b7c22 (diff) | |
Migrate activity db to EF Core
Diffstat (limited to 'Jellyfin.Server.Implementations/Migrations/DesignTimeJellyfinDbFactory.cs')
| -rw-r--r-- | Jellyfin.Server.Implementations/Migrations/DesignTimeJellyfinDbFactory.cs | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/Jellyfin.Server.Implementations/Migrations/DesignTimeJellyfinDbFactory.cs b/Jellyfin.Server.Implementations/Migrations/DesignTimeJellyfinDbFactory.cs new file mode 100644 index 000000000..72a4a8c3b --- /dev/null +++ b/Jellyfin.Server.Implementations/Migrations/DesignTimeJellyfinDbFactory.cs @@ -0,0 +1,20 @@ +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>(); + optionsBuilder.UseSqlite("Data Source=jellyfin.db"); + + return new JellyfinDb(optionsBuilder.Options); + } + } +} |
