Move comment

This commit is contained in:
Erik Johnston 2017-07-11 15:44:18 +01:00
parent fe4e885f54
commit 410b4e14a1

View file

@ -28,8 +28,8 @@ CREATE UNIQUE INDEX groups_idx ON groups(group_id);
CREATE TABLE group_users (
group_id TEXT NOT NULL,
user_id TEXT NOT NULL,
is_admin BOOLEAN NOT NULL, -- whether the users membership can be seen by everyone
is_public BOOLEAN NOT NULL
is_admin BOOLEAN NOT NULL,
is_public BOOLEAN NOT NULL -- whether the users membership can be seen by everyone
);