AltHeroes Bot v2
1using Microsoft.EntityFrameworkCore;
2using Microsoft.Extensions.DependencyInjection;
3
4namespace AltBot.Data;
5
6public static class StartupExtensions
7{
8 public static async Task MigrateDatabaseAsync(this IServiceProvider services)
9 {
10 using var scope = services.CreateScope();
11 var db = scope.ServiceProvider.GetRequiredService<DataContext>();
12 await db.Database.MigrateAsync();
13 }
14}