Developer Note:
Please run this SQL in your Database to enable all features:
ALTER TABLE public.group_rooms ADD COLUMN IF NOT EXISTS icon text DEFAULT '๐ฌ', ADD COLUMN IF NOT EXISTS theme text DEFAULT '#efeae2', ADD COLUMN IF NOT EXISTS guidelines text DEFAULT 'Be respectful.', ADD COLUMN IF NOT EXISTS admins jsonb DEFAULT '[]'::jsonb, ADD COLUMN IF NOT EXISTS banned_users jsonb DEFAULT '[]'::jsonb, ADD COLUMN IF NOT EXISTS pinned_message text, ADD COLUMN IF NOT EXISTS participants jsonb DEFAULT '[]'::jsonb;
ALTER TABLE public.group_messages ADD COLUMN IF NOT EXISTS sender_id text;