Global Messages
This commit is contained in:
19
packages/database/prisma/schema/message.prisma
Normal file
19
packages/database/prisma/schema/message.prisma
Normal file
@@ -0,0 +1,19 @@
|
||||
enum GlobalColor {
|
||||
PRIMARY
|
||||
SECONDARY
|
||||
INFO
|
||||
SUCCESS
|
||||
WARNING
|
||||
ERROR
|
||||
}
|
||||
|
||||
model Message {
|
||||
id Int @id @default(autoincrement())
|
||||
color GlobalColor
|
||||
message String
|
||||
showUntil DateTime
|
||||
isMainMsg Boolean
|
||||
active Boolean
|
||||
createdAt DateTime @default(now())
|
||||
updatedAt DateTime @updatedAt
|
||||
}
|
||||
Reference in New Issue
Block a user