From 2fc371c21917e50d83547c9ee4c272df5222a056 Mon Sep 17 00:00:00 2001 From: ChiaraBm Date: Thu, 12 Mar 2026 15:01:19 +0000 Subject: [PATCH] Fixed typo and wrong type reference in DataContext --- MoonlightServers.Api/Infrastructure/Database/DataContext.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/MoonlightServers.Api/Infrastructure/Database/DataContext.cs b/MoonlightServers.Api/Infrastructure/Database/DataContext.cs index 613732c..42bd737 100644 --- a/MoonlightServers.Api/Infrastructure/Database/DataContext.cs +++ b/MoonlightServers.Api/Infrastructure/Database/DataContext.cs @@ -31,8 +31,8 @@ public class DataContext : DbContext $"Database={Options.Value.Database}", builder => { - builder.MigrationsAssembly(typeof(DbContext).Assembly); - builder.MigrationsHistoryTable("__EFMigrationsHistory", "severs"); + builder.MigrationsAssembly(typeof(DataContext).Assembly); + builder.MigrationsHistoryTable("__EFMigrationsHistory", "servers"); } ); }