//
// Copyright (c) PlaceholderCompany. All rights reserved.
//
namespace Jellyfin.Server.Migrations;
using System;
using Jellyfin.Server.Implementations;
using Microsoft.EntityFrameworkCore;
///
/// Defines a migration that operates on the Database.
///
#pragma warning disable CS0618 // Type or member is obsolete
internal interface IDatabaseMigrationRoutine : IMigrationRoutine
#pragma warning restore CS0618 // Type or member is obsolete
{
}