This commit is contained in:
PxlLoewe
2025-07-06 00:36:48 -07:00
parent 2cdbab9f28
commit a9d20e018d
13 changed files with 72 additions and 19 deletions

View File

@@ -0,0 +1,17 @@
enum GlobalColor {
PRIMARY
SECONDARY
INFO
SUCCESS
WARNING
ERROR
}
model Config {
id Int @id @default(autoincrement())
color GlobalColor?
message String @default("")
maintenanceEnabled Boolean @default(false)
disableHPG Boolean @default(false)
createdAt DateTime @default(now())
}