aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Server.Startup.Common/ApplicationHost.cs
diff options
context:
space:
mode:
authorsoftworkz <softworkz@hotmail.com>2016-03-03 05:10:15 +0100
committersoftworkz <softworkz@hotmail.com>2016-03-03 05:10:15 +0100
commit86de8e27b9b636d2a55d705820cca269f699ea6a (patch)
tree3a6763e6503b34dbc06fa287ca755e2959b4485c /MediaBrowser.Server.Startup.Common/ApplicationHost.cs
parent6c50734131604d98f7637693ebcb91dedaac506e (diff)
Added migration task for new MovieDbEpisodeProvider
Ensures that the new provider is disabled by default
Diffstat (limited to 'MediaBrowser.Server.Startup.Common/ApplicationHost.cs')
-rw-r--r--MediaBrowser.Server.Startup.Common/ApplicationHost.cs1
1 files changed, 1 insertions, 0 deletions
diff --git a/MediaBrowser.Server.Startup.Common/ApplicationHost.cs b/MediaBrowser.Server.Startup.Common/ApplicationHost.cs
index a543808504..b71fe365d3 100644
--- a/MediaBrowser.Server.Startup.Common/ApplicationHost.cs
+++ b/MediaBrowser.Server.Startup.Common/ApplicationHost.cs
@@ -374,6 +374,7 @@ namespace MediaBrowser.Server.Startup.Common
var migrations = new List<IVersionMigration>
{
new OmdbEpisodeProviderMigration(ServerConfigurationManager),
+ new MovieDbEpisodeProviderMigration(ServerConfigurationManager),
new DbMigration(ServerConfigurationManager, TaskManager)
};