feat(backend): add unlisted members, private member list, custom members header
This commit is contained in:
parent
ba48ba0eb2
commit
ef9b186e66
14 changed files with 135 additions and 34 deletions
8
scripts/migrate/012_custom_options.sql
Normal file
8
scripts/migrate/012_custom_options.sql
Normal file
|
@ -0,0 +1,8 @@
|
|||
-- +migrate Up
|
||||
|
||||
-- 2023-04-01: Add a couple customization options to users and members
|
||||
|
||||
alter table users add column member_title text;
|
||||
alter table users add column list_private boolean not null default false;
|
||||
|
||||
alter table members add column unlisted boolean not null default false;
|
Loading…
Add table
Add a link
Reference in a new issue