fixed merge conflicts.

pull/3113/head
kay.one 11 years ago
parent 99daa47f89
commit 7ff1335a2e

@ -21,7 +21,6 @@ namespace NzbDrone.Core.Configuration
String DownloadedEpisodesFolder { get; set; } String DownloadedEpisodesFolder { get; set; }
bool UseSeasonFolder { get; set; } bool UseSeasonFolder { get; set; }
string SeasonFolderFormat { get; set; } string SeasonFolderFormat { get; set; }
bool EnableBacklogSearching { get; set; }
bool AutoIgnorePreviouslyDownloadedEpisodes { get; set; } bool AutoIgnorePreviouslyDownloadedEpisodes { get; set; }
int Retention { get; set; } int Retention { get; set; }
Guid UGuid { get; } Guid UGuid { get; }

@ -4,12 +4,13 @@ using NzbDrone.Core.Datastore.Migration.Framework;
namespace NzbDrone.Core.Datastore.Migration namespace NzbDrone.Core.Datastore.Migration
{ {
[Tags("")] [Tags("")]
[Migration(7)] [Migration(8)]
public class remove_backlog : NzbDroneMigrationBase public class remove_backlog : NzbDroneMigrationBase
{ {
protected override void MainDbUpgrade() protected override void MainDbUpgrade()
{ {
SQLiteAlter.DropColumns("Series", new[] { "BacklogSetting" }); SQLiteAlter.DropColumns("Series", new[] { "BacklogSetting" });
SQLiteAlter.DropColumns("NamingConfig", new[] { "UseSceneName" });
} }
} }
} }

@ -213,7 +213,7 @@
<Compile Include="Datastore\Migration\005_added_eventtype_to_history.cs" /> <Compile Include="Datastore\Migration\005_added_eventtype_to_history.cs" />
<Compile Include="Datastore\Migration\006_add_index_to_log_time.cs" /> <Compile Include="Datastore\Migration\006_add_index_to_log_time.cs" />
<Compile Include="Datastore\Migration\007_add_renameEpisodes_to_naming.cs" /> <Compile Include="Datastore\Migration\007_add_renameEpisodes_to_naming.cs" />
<Compile Include="Datastore\Migration\007_remove_backlog.cs" /> <Compile Include="Datastore\Migration\008_remove_backlog.cs" />
<Compile Include="Datastore\Migration\Framework\MigrationContext.cs" /> <Compile Include="Datastore\Migration\Framework\MigrationContext.cs" />
<Compile Include="Datastore\Migration\Framework\MigrationController.cs" /> <Compile Include="Datastore\Migration\Framework\MigrationController.cs" />
<Compile Include="Datastore\Migration\Framework\MigrationExtension.cs" /> <Compile Include="Datastore\Migration\Framework\MigrationExtension.cs" />

@ -39,8 +39,6 @@ namespace NzbDrone.Core.Organizer
public bool ReplaceSpaces { get; set; } public bool ReplaceSpaces { get; set; }
//Todo: remove - not used
public string SeasonFolderFormat { get; set; } public string SeasonFolderFormat { get; set; }
public bool UseSceneName { get; set; }
} }
} }
Loading…
Cancel
Save