mirror of
https://github.com/umami-software/umami.git
synced 2026-02-13 17:15:37 +01:00
feat: persist user preferences to database
This commit is contained in:
parent
7ac5913c86
commit
60ac63604f
17 changed files with 271 additions and 17 deletions
5
prisma/migrations/15_add_user_preferences/migration.sql
Normal file
5
prisma/migrations/15_add_user_preferences/migration.sql
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
-- AlterTable
|
||||
ALTER TABLE "user" ADD COLUMN "date_range" VARCHAR(50),
|
||||
ADD COLUMN "timezone" VARCHAR(100),
|
||||
ADD COLUMN "language" VARCHAR(10),
|
||||
ADD COLUMN "theme" VARCHAR(20);
|
||||
Loading…
Add table
Add a link
Reference in a new issue