aboutsummaryrefslogtreecommitdiff
path: root/Emby.Server.Core/Migrations
diff options
context:
space:
mode:
Diffstat (limited to 'Emby.Server.Core/Migrations')
-rw-r--r--Emby.Server.Core/Migrations/DbMigration.cs3
-rw-r--r--Emby.Server.Core/Migrations/IVersionMigration.cs9
-rw-r--r--Emby.Server.Core/Migrations/UpdateLevelMigration.cs1
3 files changed, 3 insertions, 10 deletions
diff --git a/Emby.Server.Core/Migrations/DbMigration.cs b/Emby.Server.Core/Migrations/DbMigration.cs
index 17e086093..5d652770f 100644
--- a/Emby.Server.Core/Migrations/DbMigration.cs
+++ b/Emby.Server.Core/Migrations/DbMigration.cs
@@ -1,8 +1,9 @@
using System.Threading.Tasks;
-using Emby.Server.Implementations.Persistence;
+using Emby.Server.Implementations.Data;
using MediaBrowser.Controller.Configuration;
using MediaBrowser.Model.Tasks;
using Emby.Server.Core.Data;
+using Emby.Server.Implementations.Migrations;
namespace Emby.Server.Core.Migrations
{
diff --git a/Emby.Server.Core/Migrations/IVersionMigration.cs b/Emby.Server.Core/Migrations/IVersionMigration.cs
deleted file mode 100644
index 0190e289a..000000000
--- a/Emby.Server.Core/Migrations/IVersionMigration.cs
+++ /dev/null
@@ -1,9 +0,0 @@
-using System.Threading.Tasks;
-
-namespace Emby.Server.Core.Migrations
-{
- public interface IVersionMigration
- {
- Task Run();
- }
-}
diff --git a/Emby.Server.Core/Migrations/UpdateLevelMigration.cs b/Emby.Server.Core/Migrations/UpdateLevelMigration.cs
index bbedd7b63..c79dbabea 100644
--- a/Emby.Server.Core/Migrations/UpdateLevelMigration.cs
+++ b/Emby.Server.Core/Migrations/UpdateLevelMigration.cs
@@ -9,6 +9,7 @@ using MediaBrowser.Controller.Configuration;
using MediaBrowser.Model.Logging;
using MediaBrowser.Model.Serialization;
using MediaBrowser.Model.Updates;
+using Emby.Server.Implementations.Migrations;
namespace Emby.Server.Core.Migrations
{