diff --git a/API/Program.cs b/API/Program.cs index 75b5038..7a9553f 100644 --- a/API/Program.cs +++ b/API/Program.cs @@ -109,6 +109,7 @@ app.UseMiddleware(); using (IServiceScope scope = app.Services.CreateScope()) { PgsqlContext context = scope.ServiceProvider.GetRequiredService(); + //TODO Remove after migrations complete if (context.Database.GetMigrations().Contains("20250630182650_OofV2.1") == false) { IQueryable<(string, string)> mangas = context.Database.SqlQuery<(string, string)>($"SELECT MangaConnectorName, IdOnConnectorSite as ID FROM Mangas");