mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-16 22:13:06 +03:00
* 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
13 lines
283 B
C#
13 lines
283 B
C#
using System;
|
|
using Jellyfin.Server.Implementations;
|
|
using Microsoft.EntityFrameworkCore;
|
|
|
|
namespace Jellyfin.Server.Migrations;
|
|
|
|
/// <summary>
|
|
/// Defines a migration that operates on the Database.
|
|
/// </summary>
|
|
internal interface IDatabaseMigrationRoutine : IMigrationRoutine
|
|
{
|
|
}
|