Store whether the user wants to publicise their membership of a group

This commit is contained in:
Erik Johnston 2017-08-08 11:50:09 +01:00
parent a1e67bcb97
commit 05e21285aa
3 changed files with 7 additions and 0 deletions

View file

@ -150,6 +150,7 @@ CREATE TABLE local_group_membership (
user_id TEXT NOT NULL,
is_admin BOOLEAN NOT NULL,
membership TEXT NOT NULL,
is_publicised TEXT NOT NULL, -- if the user is publicising their membership
content TEXT NOT NULL
);