IDatabaseMigrationRoutine.cs 405 B

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