Add game website URL to suggestions and results

This commit is contained in:
2026-01-28 20:25:02 +01:00
parent e15dd02228
commit 1b96d2af46
8 changed files with 228 additions and 4 deletions

View File

@@ -38,6 +38,7 @@ public class AppDbContext : DbContext
builder.Property(s => s.Description).HasMaxLength(500);
builder.Property(s => s.ScreenshotUrl).HasMaxLength(2048);
builder.Property(s => s.YoutubeUrl).HasMaxLength(2048);
builder.Property(s => s.GameUrl).HasMaxLength(2048);
});
modelBuilder.Entity<Vote>(builder =>