Files
pgsql-jellyfin/Jellyfin.Server/Migrations/IDatabaseMigrationRoutine.cs
T

19 lines
560 B
C#

// <copyright file="IDatabaseMigrationRoutine.cs" company="PlaceholderCompany">
// Copyright (c) PlaceholderCompany. All rights reserved.
// </copyright>
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
{
}