Lidarr/src/NzbDrone.Core/Datastore/Migration/192_import_exclusion_type.cs

15 lines
367 B
C#

using FluentMigrator;
using NzbDrone.Core.Datastore.Migration.Framework;
namespace NzbDrone.Core.Datastore.Migration
{
[Migration(192)]
public class import_exclusion_type : NzbDroneMigrationBase
{
protected override void MainDbUpgrade()
{
Alter.Table("ImportListExclusions").AlterColumn("TvdbId").AsInt32();
}
}
}