File tree Expand file tree Collapse file tree
packages/database/supabase Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -15,7 +15,8 @@ WHERE id IN (
1515 JOIN public." SpaceAccess" USING (space_id)
1616 JOIN public .my_user_accounts () ON (account_uid = my_user_accounts)
1717 WHERE permissions >= ' partial'
18- UNION SELECT id FROM public." PlatformAccount" WHERE dg_account= auth .uid ()
18+ UNION
19+ SELECT id FROM public." PlatformAccount" WHERE dg_account = auth .uid ()
1920);
2021
2122CREATE TYPE public .group_member_info AS (
Original file line number Diff line number Diff line change @@ -454,7 +454,8 @@ WHERE id IN (
454454 JOIN public." SpaceAccess" USING (space_id)
455455 JOIN public .my_user_accounts () ON (account_uid = my_user_accounts)
456456 WHERE permissions >= ' partial'
457- UNION SELECT id FROM public." PlatformAccount" WHERE dg_account= auth .uid ()
457+ UNION
458+ SELECT id FROM public." PlatformAccount" WHERE dg_account = auth .uid ()
458459);
459460
460461CREATE TYPE public .group_member_info AS (
You can’t perform that action at this time.
0 commit comments