Fix settings data

This commit is contained in:
Jamie Curnow
2021-07-26 13:50:44 +10:00
parent 93721ef2d8
commit 2326a95d2a
5 changed files with 18 additions and 11 deletions

View File

@@ -32,7 +32,7 @@ CREATE TABLE IF NOT EXISTS `setting`
created_on INTEGER NOT NULL DEFAULT 0,
modified_on INTEGER NOT NULL DEFAULT 0,
name TEXT NOT NULL,
description TEXT NOT NULL,
description TEXT NOT NULL DEFAULT "",
value TEXT NOT NULL,
UNIQUE (name)
);