chore(db): add AppSetting model

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
This commit is contained in:
2026-05-16 20:10:40 +02:00
parent d25a7e9ff5
commit 364b1cd7e0
2 changed files with 27 additions and 0 deletions
+9
View File
@@ -19,3 +19,12 @@ model Stock {
createdAt DateTime @default(now())
updatedAt DateTime @updatedAt
}
model AppSetting {
id Int @id @default(autoincrement())
key String @unique
value Json
description String?
updatedAt DateTime @updatedAt
updatedBy String?
}