add admin and systemadmin to userproperties

This commit is contained in:
Jakobus Schürz 2019-09-23 12:58:42 +02:00
parent e133fcecfc
commit c8b9cd6150

View file

@ -23,6 +23,8 @@ CREATE TABLE user (
commands TEXT DEFAULT username NOT NULL, commands TEXT DEFAULT username NOT NULL,
capabilities TEXT, capabilities TEXT,
client_from TEXT, client_from TEXT,
admin INTEGER DEFAULT 0 NOT NULL,
systemadmin INTEGER DEFAULT 0 NOT NULL,
created TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP created TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP
); );