mirror of
https://github.com/umami-software/umami.git
synced 2026-02-19 12:05:41 +01:00
Resolve favicon locally (WIP)
This commit is contained in:
parent
0cb14f3f6c
commit
4688986901
13 changed files with 91 additions and 30 deletions
|
|
@ -0,0 +1,2 @@
|
|||
-- AlterTable
|
||||
ALTER TABLE "website" ADD COLUMN "favicon" VARCHAR(500);
|
||||
|
|
@ -85,6 +85,7 @@ model website {
|
|||
domain String? @db.VarChar(500)
|
||||
share_id String? @unique @db.VarChar(64)
|
||||
created_at DateTime? @default(now()) @db.Timestamptz(6)
|
||||
favicon String? @db.VarChar(500)
|
||||
account account @relation(fields: [user_id], references: [user_id])
|
||||
event event[]
|
||||
pageview pageview[]
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue