暂存-设置项管理

This commit is contained in:
sijinhui
2024-04-24 18:28:38 +08:00
parent 304a96a4ff
commit 8c5bbf1cf0
6 changed files with 125 additions and 5 deletions

View File

@@ -136,3 +136,13 @@ model VerificationToken {
// image String? @db.Text
// imageBlurhash String? @db.Text
// }
model Setting {
key String @id
value String
type String
createdAt DateTime @default(now()) @map("created_at")
updatedAt DateTime @default(now()) @updatedAt @map("updated_at")
@@map("settings")
}