feat: Implement genre activation/deactivation with UI controls and main page filtering.

This commit is contained in:
Hördle Bot
2025-11-25 00:20:29 +01:00
parent a744393335
commit 41ce6c12ce
5 changed files with 59 additions and 9 deletions

View File

@@ -30,6 +30,7 @@ model Genre {
id Int @id @default(autoincrement())
name String @unique
subtitle String?
active Boolean @default(true)
songs Song[]
dailyPuzzles DailyPuzzle[]
}