using Microsoft.EntityFrameworkCore; using Microsoft.Extensions.DependencyInjection; namespace AltBot.Data; public static class StartupExtensions { public static async Task MigrateDatabaseAsync(this IServiceProvider services) { using var scope = services.CreateScope(); var db = scope.ServiceProvider.GetRequiredService(); await db.Database.MigrateAsync(); } }