1234567891011121314151617181920 |
- using System.Collections.Generic;
- using MediaBrowser.Common.Configuration;
- namespace Jellyfin.Server.Migrations
- {
- /// <summary>
- /// A factory that can find a persistent file of the migration configuration, which lists all applied migrations.
- /// </summary>
- public class MigrationsFactory : IConfigurationFactory
- {
- /// <inheritdoc/>
- public IEnumerable<ConfigurationStore> GetConfigurations()
- {
- return new[]
- {
- new MigrationsListStore()
- };
- }
- }
- }
|