Fix up invalid MySQL migration

Rename files, change import and namespace.
pull/3924/head
Joshua M. Boniface 4 years ago
parent c03eaa12da
commit 555406c1c4

@ -4,11 +4,11 @@ using Microsoft.EntityFrameworkCore;
using Microsoft.EntityFrameworkCore.Infrastructure; using Microsoft.EntityFrameworkCore.Infrastructure;
using Microsoft.EntityFrameworkCore.Migrations; using Microsoft.EntityFrameworkCore.Migrations;
using Microsoft.EntityFrameworkCore.Storage.ValueConversion; using Microsoft.EntityFrameworkCore.Storage.ValueConversion;
using Ombi.Store.Context.Sqlite; using Ombi.Store.Context.MySql;
namespace Ombi.Store.Migrations.ExternalSqlite namespace Ombi.Store.Migrations.ExternalMySql
{ {
[DbContext(typeof(ExternalSqliteContext))] [DbContext(typeof(ExternalMySqlContext))]
[Migration("20201212014227_Jellyfin")] [Migration("20201212014227_Jellyfin")]
partial class Jellyfin partial class Jellyfin
{ {

@ -1,8 +1,8 @@
using Microsoft.EntityFrameworkCore.Migrations; using System;
using System; using Microsoft.EntityFrameworkCore.Metadata;
using System.Collections.Generic; using Microsoft.EntityFrameworkCore.Migrations;
namespace Ombi.Store.Migrations.ExternalSqlite namespace Ombi.Store.Migrations.ExternalMySql
{ {
public partial class Jellyfin : Migration public partial class Jellyfin : Migration
{ {
Loading…
Cancel
Save