You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
713 B
25 lines
713 B
using MediaBrowser.Common.Configuration;
|
|
|
|
namespace Jellyfin.Server.Migrations
|
|
{
|
|
/// <summary>
|
|
/// A configuration that lists all the migration routines that were applied.
|
|
/// </summary>
|
|
public class MigrationsListStore : ConfigurationStore
|
|
{
|
|
/// <summary>
|
|
/// The name of the configuration in the storage.
|
|
/// </summary>
|
|
public static readonly string StoreKey = "migrations";
|
|
|
|
/// <summary>
|
|
/// Initializes a new instance of the <see cref="MigrationsListStore"/> class.
|
|
/// </summary>
|
|
public MigrationsListStore()
|
|
{
|
|
ConfigurationType = typeof(MigrationOptions);
|
|
Key = StoreKey;
|
|
}
|
|
}
|
|
}
|