Various fixes and improvements

This commit is contained in:
Ske
2020-08-16 12:10:54 +02:00
parent d702d8c9b6
commit 9e251352c7
11 changed files with 168 additions and 36 deletions

View File

@@ -20,7 +20,8 @@ create table groups (
create table group_members (
group_id int not null references groups(id) on delete cascade,
member_id int not null references members(id) on delete cascade
member_id int not null references members(id) on delete cascade,
primary key (group_id, member_id)
);
update info set schema_version = 9;