Add settings and implement auto default

This commit is contained in:
2024-08-09 16:29:53 +02:00
parent a29213f35f
commit 66a6cb69d6
2 changed files with 36 additions and 18 deletions

View File

@@ -148,4 +148,9 @@ set per100 = coalesce(
where rowid = new .rowid;
end;
create table settings(
key text not null primary key,
value text not null
);
commit;