Enhance Service Messages by Config & activeUntil

This commit is contained in:
nocnico
2025-07-03 19:26:17 +02:00
parent e137b0c75e
commit 837859982c
9 changed files with 159 additions and 78 deletions

View File

@@ -8,12 +8,14 @@ enum GlobalColor {
}
model Notam {
id Int @id @default(autoincrement())
color GlobalColor
message String
showUntil DateTime
isMainMsg Boolean
active Boolean
createdAt DateTime @default(now())
updatedAt DateTime @updatedAt
id Int @id @default(autoincrement())
color GlobalColor
message String
showUntil DateTime
showUntilActive Boolean @default(false)
wartungsmodus Boolean @default(false)
disableHPG Boolean @default(false)
active Boolean
createdAt DateTime @default(now())
updatedAt DateTime @updatedAt
}