mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-08-19 21:03:17 -07:00
Fix up invalid MySQL migration
Rename files, change import and namespace.
This commit is contained in:
parent
c03eaa12da
commit
555406c1c4
2 changed files with 7 additions and 7 deletions
|
@ -4,11 +4,11 @@ using Microsoft.EntityFrameworkCore;
|
|||
using Microsoft.EntityFrameworkCore.Infrastructure;
|
||||
using Microsoft.EntityFrameworkCore.Migrations;
|
||||
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")]
|
||||
partial class Jellyfin
|
||||
{
|
|
@ -1,8 +1,8 @@
|
|||
using Microsoft.EntityFrameworkCore.Migrations;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System;
|
||||
using Microsoft.EntityFrameworkCore.Metadata;
|
||||
using Microsoft.EntityFrameworkCore.Migrations;
|
||||
|
||||
namespace Ombi.Store.Migrations.ExternalSqlite
|
||||
namespace Ombi.Store.Migrations.ExternalMySql
|
||||
{
|
||||
public partial class Jellyfin : Migration
|
||||
{
|
Loading…
Add table
Add a link
Reference in a new issue