diff --git a/src/NzbDrone.Core/Datastore/Migration/131_make_parsed_episode_info_nullable.cs b/src/NzbDrone.Core/Datastore/Migration/131_make_parsed_episode_info_nullable.cs new file mode 100644 index 000000000..ca4ab582e --- /dev/null +++ b/src/NzbDrone.Core/Datastore/Migration/131_make_parsed_episode_info_nullable.cs @@ -0,0 +1,19 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using FluentMigrator; +using NzbDrone.Core.Datastore.Migration.Framework; +using System.Data; + +namespace NzbDrone.Core.Datastore.Migration +{ + [Migration(131)] + public class make_parsed_episode_info_nullable : NzbDroneMigrationBase + { + protected override void MainDbUpgrade() + { + Alter.Table("PendingReleases").AlterColumn("ParsedEpisodeInfo").AsString().Nullable(); + } + } +} diff --git a/src/NzbDrone.Core/NzbDrone.Core.csproj b/src/NzbDrone.Core/NzbDrone.Core.csproj index 8f71869eb..e72140641 100644 --- a/src/NzbDrone.Core/NzbDrone.Core.csproj +++ b/src/NzbDrone.Core/NzbDrone.Core.csproj @@ -1229,6 +1229,7 @@ +