Woohoo working version gooo
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Elias Jansson
2025-06-04 18:01:05 +02:00
parent 84c6c45a0b
commit c44fbfdca9
7 changed files with 214 additions and 114 deletions

View File

@@ -16,6 +16,9 @@ namespace Aberwyn.Data
base.OnModelCreating(builder);
builder.Entity<WeeklyMenu>().ToTable("WeeklyMenu");
builder.Entity<Meal>()
.Property(m => m.Id)
.ValueGeneratedNever();
}