mirror of
https://github.com/umami-software/umami.git
synced 2026-02-04 04:37:11 +01:00
Merge branch 'master' into umami-software/master
This commit is contained in:
commit
a9de07a2f1
15 changed files with 831 additions and 29 deletions
|
|
@ -316,3 +316,14 @@ model Pixel {
|
|||
@@index([createdAt])
|
||||
@@map("pixel")
|
||||
}
|
||||
|
||||
model Setting {
|
||||
id String @id @unique @map("setting_id") @db.Uuid
|
||||
key String @unique @db.VarChar(255)
|
||||
value String? @db.VarChar(4000)
|
||||
createdAt DateTime? @default(now()) @map("created_at") @db.Timestamptz(6)
|
||||
updatedAt DateTime? @updatedAt @map("updated_at") @db.Timestamptz(6)
|
||||
|
||||
@@map("setting")
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue