feat: add avatar urls to groups (#4525)

This commit is contained in:
Jon Ayers
2022-10-17 17:46:01 -05:00
committed by GitHub
parent 9b4ab82044
commit e0a14f68fa
20 changed files with 228 additions and 46 deletions

View File

@ -181,7 +181,8 @@ CREATE TABLE group_members (
CREATE TABLE groups (
id uuid NOT NULL,
name text NOT NULL,
organization_id uuid NOT NULL
organization_id uuid NOT NULL,
avatar_url text DEFAULT ''::text NOT NULL
);
CREATE TABLE licenses (