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.
Radarr/src/NzbDrone.Core/Datastore/Migration/144_add_cookies_to_indexer_...

16 lines
455 B

using FluentMigrator;
using NzbDrone.Core.Datastore.Migration.Framework;
namespace NzbDrone.Core.Datastore.Migration
{
[Migration(144)]
public class add_cookies_to_indexer_status : NzbDroneMigrationBase
{
protected override void MainDbUpgrade()
{
Alter.Table("IndexerStatus").AddColumn("Cookies").AsString().Nullable()
.AddColumn("CookiesExpirationDate").AsDateTime().Nullable();
}
}
}