using MediaBrowser.Common.Configuration; namespace Jellyfin.Server.Migrations { /// /// A configuration that lists all the migration routines that were applied. /// public class MigrationsListStore : ConfigurationStore { /// /// Initializes a new instance of the class. /// public MigrationsListStore() { ConfigurationType = typeof(MigrationOptions); Key = "migrations"; } } }