Frontend: Add user panel

This commit is contained in:
2023-09-10 14:30:40 +02:00
parent eaea93fb9e
commit 920376995e
3 changed files with 106 additions and 0 deletions

View File

@@ -8,6 +8,7 @@ create table channels(id int primary key not null,
create table users(id int primary key not null,
name text not null,
password text not null,
privileges int not null, -- 0 - normal user, 1 - moderator, 2 - administrator
accessor int -- foreign key in accessors table
);