diff options
| author | JPVenson <github@jpb.email> | 2025-03-27 03:23:36 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-03-26 20:23:36 -0600 |
| commit | 296b17bf44d39c116ad7c70aba8f8c144335fe24 (patch) | |
| tree | d6626114816a7eb5efb6f9df3f96aaf3d373f1ac /Jellyfin.Server/Migrations/Routines/MigrateLibraryDb.cs | |
| parent | 08dbb5c842e77f8a3e610fd8e339e4be570a1825 (diff) | |
Feature/backup on migration (#13754)
* Added generalised backup for migrations
* Added backup strategy to MigrateLibraryDb
* Added missing namespace
* Fix merge issues
* Fixed style issue
* change fast backup key to timestamp
* Update src/Jellyfin.Database/Jellyfin.Database.Providers.Sqlite/SqliteDatabaseProvider.cs
* Update Fields
* applied review comments
Diffstat (limited to 'Jellyfin.Server/Migrations/Routines/MigrateLibraryDb.cs')
| -rw-r--r-- | Jellyfin.Server/Migrations/Routines/MigrateLibraryDb.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Jellyfin.Server/Migrations/Routines/MigrateLibraryDb.cs b/Jellyfin.Server/Migrations/Routines/MigrateLibraryDb.cs index 214a2f4e6..941a276ce 100644 --- a/Jellyfin.Server/Migrations/Routines/MigrateLibraryDb.cs +++ b/Jellyfin.Server/Migrations/Routines/MigrateLibraryDb.cs @@ -29,7 +29,7 @@ namespace Jellyfin.Server.Migrations.Routines; /// <summary> /// The migration routine for migrating the userdata database to EF Core. /// </summary> -public class MigrateLibraryDb : IMigrationRoutine +internal class MigrateLibraryDb : IDatabaseMigrationRoutine { private const string DbFilename = "library.db"; |
