Files
var-monorepo/packages/database/prisma/schema/notam.prisma

22 lines
520 B
Plaintext

enum GlobalColor {
PRIMARY
SECONDARY
INFO
SUCCESS
WARNING
ERROR
}
model Notam {
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
}