mirror of
https://github.com/PluralKit/PluralKit.git
synced 2026-02-09 07:17:56 +00:00
feat: rework group list into member list
This commit is contained in:
parent
0afe031284
commit
f3869dbcbe
21 changed files with 374 additions and 126 deletions
7
PluralKit.Core/Database/Migrations/25.sql
Normal file
7
PluralKit.Core/Database/Migrations/25.sql
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
-- schema version 25
|
||||
-- group name privacy
|
||||
|
||||
alter table groups add column name_privacy integer check (name_privacy in (1, 2)) not null default 1;
|
||||
alter table groups add column metadata_privacy integer check (metadata_privacy in (1, 2)) not null default 1;
|
||||
|
||||
update info set schema_version = 25;
|
||||
Loading…
Add table
Add a link
Reference in a new issue