feat: rework group list into member list

This commit is contained in:
rladenson 2022-01-14 22:30:02 -05:00 committed by spiral
parent 0afe031284
commit f3869dbcbe
No known key found for this signature in database
GPG key ID: A6059F0CA0E1BD31
21 changed files with 374 additions and 126 deletions

View 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;