mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-18 06:53:07 +03:00
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
|
||
|
|
{
|
||
|
|
}
|