mirror of https://github.com/ghostfolio/ghostfolio
9 changed files with 33 additions and 12 deletions
@ -1 +1 @@ |
|||
export type Appearance = 'DARK' | 'LIGHT'; |
|||
export type Appearance = 'AUTO' | 'LIGHT' | 'DARK'; |
|||
|
@ -0,0 +1,5 @@ |
|||
-- CreateEnum |
|||
CREATE TYPE "Appearance" AS ENUM ('AUTO', 'LIGHT', 'DARK'); |
|||
|
|||
-- Update Settings table |
|||
ALTER TABLE "Settings" ADD COLUMN "appearance" "Appearance"; |
Loading…
Reference in new issue