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