Add initial admin page with update feature

This commit is contained in:
Kevin Thomas
2021-08-05 23:39:07 -07:00
parent 790c1fda22
commit d0fa884d83
8 changed files with 197 additions and 6 deletions

View File

@@ -7,7 +7,8 @@ module.exports = function () {
username TEXT UNIQUE,
hashed_password BLOB,
salt BLOB,
name TEXT)`
name TEXT,
is_admin INTEGER)`
)
db.run(`CREATE TABLE IF NOT EXISTS profiles (