Renamed migration table. Added nullability to template variable migration

This commit is contained in:
2026-03-12 15:45:51 +00:00
parent 2fc371c219
commit 91887ec047
5 changed files with 359 additions and 6 deletions

View File

@@ -32,7 +32,7 @@ public class DataContext : DbContext
builder =>
{
builder.MigrationsAssembly(typeof(DataContext).Assembly);
builder.MigrationsHistoryTable("__EFMigrationsHistory", "servers");
builder.MigrationsHistoryTable("MigrationsHistory", "servers");
}
);
}