From c1d44fde498f66a10541c05e1896c1c727e1c11c Mon Sep 17 00:00:00 2001 From: Jonathan Bourdon Date: Thu, 31 Jul 2025 13:48:14 -0400 Subject: [PATCH] bug(tipping): missing db migration --- backend/Modules/Tipping/DependencyInjection.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/Modules/Tipping/DependencyInjection.cs b/backend/Modules/Tipping/DependencyInjection.cs index 1b26545..a4014db 100644 --- a/backend/Modules/Tipping/DependencyInjection.cs +++ b/backend/Modules/Tipping/DependencyInjection.cs @@ -23,7 +23,7 @@ public static class DependencyInjection { IServiceScopeFactory scopeFactory = app.ApplicationServices.GetRequiredService(); using IServiceScope scope = scopeFactory.CreateScope(); - await using MessagingDbContext context = scope.ServiceProvider.GetRequiredService(); + await using TippingDbContext context = scope.ServiceProvider.GetRequiredService(); await context.Database.MigrateAsync(cancellationToken); return app;