Adding db infrastructure setup

This commit is contained in:
Janus Knudsen 2025-01-24 18:04:35 +01:00
parent 7dae58ec1e
commit 58bf4bea00
11 changed files with 125 additions and 6 deletions

View file

@ -35,8 +35,8 @@ namespace Tests
{
var conn = Container.Resolve<IDbConnection>();
var dbSetup = new Database.Identity.DbSetup(conn);
await dbSetup.CreateDatabase("swp");
var dbSetup = new Database.Identity.DbInfrastructureSetup(conn);
await dbSetup.CreateDatabaseWithSchema("swp");
}