Set default show unit to be true

This commit is contained in:
Brandon Presley 2022-09-24 16:55:23 +12:00
parent 7feb98f7ce
commit 2b6ac1cd10
1 changed files with 3 additions and 0 deletions

3
db.ts
View File

@ -91,6 +91,9 @@ const migrations = [
`
ALTER TABLE settings ADD COLUMN color TEXT NULL
`,
`
UPDATE settings SET showUnit = 1
`,
];
export let db: SQLiteDatabase;