Remove redundant SQL from SQLite rebuild migration

This commit is contained in:
2026-04-04 20:37:17 +02:00
parent 2e6951e695
commit 8c413a8ded
3 changed files with 21 additions and 6 deletions

View File

@@ -121,6 +121,8 @@ For migration authoring, use the local tool command form:
dotnet dotnet-ef migrations add <MigrationName> --project RpgRoller/RpgRoller.csproj --startup-project RpgRoller/RpgRoller.csproj
```
For SQLite migrations, avoid `migrationBuilder.Sql(...)` in the same migration step that rebuilds a table for schema changes; prefer column defaults or a follow-up migration so EF Core does not warn about raw SQL executing while a rebuilt table is still pending.
## Frontend Runtime
- Runtime frontend is Blazor Server with interactive components.