Add user management to api

This commit is contained in:
viktorstrate
2020-02-16 12:22:00 +01:00
parent 108de3d6b8
commit a87e9fc56d
6 changed files with 535 additions and 23 deletions

View File

@@ -1,7 +1,7 @@
CREATE TABLE IF NOT EXISTS user (
user_id int NOT NULL AUTO_INCREMENT,
username varchar(256) NOT NULL UNIQUE,
password varchar(256) NOT NULL,
password varchar(256),
root_path varchar(512),
admin boolean NOT NULL DEFAULT 0,