feat: add support for applying migrations automatically
All checks were successful
Update changelog / changelog (push) Successful in 25s

This commit is contained in:
2025-12-17 01:07:05 +01:00
parent f5df949a4c
commit ac2b6aba6e
4 changed files with 102 additions and 12 deletions

View File

@@ -78,7 +78,7 @@ if (args.FirstOrDefault() is not null)
ApplicationDbContext db = scope.ServiceProvider.GetRequiredService<ApplicationDbContext>();
GeneralUseHelpers guhf = scope.ServiceProvider.GetRequiredService<GeneralUseHelpers>();
Cli cli = new(db, guhf, args);
shutdown = await cli.Parse();
shutdown = cli.Parse();
}
if (shutdown) return;
}