Frontend: Add channel access granting/revoking support

This commit is contained in:
2023-09-16 17:06:10 +02:00
parent fe114e749c
commit 57365db9d8
5 changed files with 98 additions and 5 deletions

View File

@@ -16,7 +16,6 @@ create table servers(id int primary key not null,
port int not null
);
create table accessors(id int primary key not null,
channel_id int not null, -- foreign key in channels table
user_id int not null -- foreign key in users table
create table accessors(user_id int not null, -- foreign key in users table
channel_id int not null -- foreign key in channels table
);