Use the configuration depending on the selected database provider #13

Merged
Wesser merged 33 commits from feat/database-persistence into feat/add-setup 2024-06-01 05:45:18 +03:00
Showing only changes of commit 827cdaf9f9 - Show all commits

View File

@ -6,6 +6,6 @@ public static class DbInitializer
{ {
public static void Initialize(DbContext dbContext) public static void Initialize(DbContext dbContext)
{ {
dbContext.Database.EnsureCreated(); dbContext.Database.Migrate();
} }
} }