diff --git a/I18N Commander/DataModel/Setup.cs b/I18N Commander/DataModel/Setup.cs index 05f33d6..c8c8ed5 100644 --- a/I18N Commander/DataModel/Setup.cs +++ b/I18N Commander/DataModel/Setup.cs @@ -54,6 +54,9 @@ public static class Setup await using var serviceProvider = serviceCollection.BuildServiceProvider(); var dbContext = serviceProvider.GetRequiredService(); + // Migrate the database to create the tables etc.: + await Setup.PerformDataMigration(dbContext); + // Next, we import the data from the provided JSON file: await dbContext.ImportAsync(path2JSONFile);