mirror of
https://github.com/PluralKit/PluralKit.git
synced 2026-02-08 14:57:54 +00:00
Various fixes and improvements
This commit is contained in:
parent
d702d8c9b6
commit
9e251352c7
11 changed files with 168 additions and 36 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue