Fixed migration runner and added docs for adding migrations

This commit is contained in:
JPVenson
2025-01-27 17:20:14 +00:00
parent 9d1c4ea169
commit 844646e2fe
8 changed files with 59 additions and 12 deletions

View File

@@ -85,6 +85,6 @@ public static class WebHostBuilderExtensions
logger.LogInformation("Kestrel listening to unix socket {SocketPath}", socketPath);
}
})
.UseStartup(_ => new Startup(appHost));
.UseStartup(context => new Startup(appHost, context.Configuration));
}
}