This commit is contained in:
17
packages/database/prisma/schema/config.prisma
Normal file
17
packages/database/prisma/schema/config.prisma
Normal 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())
|
||||
}
|
||||
Reference in New Issue
Block a user