blob: d2d80a81eb1075bc8d2730e46c0f9318360d9eeb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
using System;
using Jellyfin.Server.Implementations;
using Microsoft.EntityFrameworkCore;
namespace Jellyfin.Server.Migrations;
/// <summary>
/// Defines a migration that operates on the Database.
/// </summary>
#pragma warning disable CS0618 // Type or member is obsolete
internal interface IDatabaseMigrationRoutine : IMigrationRoutine
#pragma warning restore CS0618 // Type or member is obsolete
{
}
|