Event kurzbeschreibung für Listenansicht hinzugefügt

This commit is contained in:
PxlLoewe
2025-07-18 14:24:29 -07:00
parent 97012f1b6f
commit 85fdfb3bb1
5 changed files with 21 additions and 15 deletions

View File

@@ -37,6 +37,7 @@ model Participant {
model Event {
id Int @id @default(autoincrement())
name String
descriptionShort String @default("")
description String
type EVENT_TYPE @default(EVENT)
discordRoleId String? @default("")

View File

@@ -0,0 +1,2 @@
-- AlterTable
ALTER TABLE "Event" ADD COLUMN "descriptionShort" TEXT NOT NULL DEFAULT '';