diff --git a/src/NzbDrone.Core/Datastore/Migration/135_add_indexer_and_enabled_release_profiles.cs b/src/NzbDrone.Core/Datastore/Migration/135_add_indexer_and_enabled_release_profiles.cs new file mode 100644 index 000000000..7cb26755a --- /dev/null +++ b/src/NzbDrone.Core/Datastore/Migration/135_add_indexer_and_enabled_release_profiles.cs @@ -0,0 +1,15 @@ +using FluentMigrator; +using NzbDrone.Core.Datastore.Migration.Framework; + +namespace NzbDrone.Core.Datastore.Migration +{ + [Migration(135)] + public class add_indexer_and_enabled_to_release_profiles : NzbDroneMigrationBase + { + protected override void MainDbUpgrade() + { + Alter.Table("ReleaseProfiles").AddColumn("Enabled").AsBoolean().WithDefaultValue(true); + Alter.Table("ReleaseProfiles").AddColumn("IndexerId").AsInt32().WithDefaultValue(0); + } + } +} \ No newline at end of file