garyaustin
02/03/2022, 8:05 PMjwarshack
02/03/2022, 9:03 PMjwarshack
02/03/2022, 9:03 PMosaxma
02/03/2022, 9:34 PMsupabase/cli
? Unfortunately the local studio does not have a settings tab like the hosted one where extra schemas can be added...jokerface
02/03/2022, 10:01 PMdocker-compose up
gives me this error Traceback (most recent call last):
File "urllib3/connectionpool.py", line 677, in urlopen
File "urllib3/connectionpool.py", line 392, in _make_request
File "http/client.py", line 1277, in request
File "http/client.py", line 1323, in _send_request
File "http/client.py", line 1272, in endheaders
File "http/client.py", line 1032, in _send_output
File "http/client.py", line 972, in send
File "docker/transport/unixconn.py", line 43, in connect
PermissionError: [Errno 13] Permission denied
During handling of the above exception, another exception occurred:
jokerface
02/03/2022, 10:02 PMThirdBase
02/04/2022, 3:46 AMbegin
UPDATE public.articles
SET created_by = public.getusername();
RETURN created_by;
end;
return type trigger
The getusername() function is:
select username
from public.profiles
where id = auth.uid();
And returns text. I know this function works as it's the default value on the articles table on row insert, but not sure why it keeps erroring on updateThirdBase
02/04/2022, 3:55 AMThirdBase
02/04/2022, 3:56 AMURL.createObjectURL(data)
garyaustin
02/04/2022, 4:00 AMSteve Phuc
02/04/2022, 6:46 AMSteve Phuc
02/04/2022, 7:07 AManothercoder
02/04/2022, 7:56 AMsaeris
02/04/2022, 8:55 AMhttp://localhost:3000/#
, when in my code I've set my redirect options as follows for my signIn hook:
await signIn(
{
provider: `discord`
},
{
redirectTo: `http://localhost:3000/dashboard`
}
);
Any ideas?eri
02/04/2022, 5:35 PMShaun Regenbaum
02/04/2022, 5:44 PMeri
02/04/2022, 6:16 PMgaryaustin
02/04/2022, 6:45 PMadrian_h
02/04/2022, 7:36 PMadrian_h
02/04/2022, 7:40 PMadrian_h
02/04/2022, 7:56 PMjwarshack
02/04/2022, 9:02 PMThirdBase
02/04/2022, 11:54 PMSELECT COUNT(*) as row_count
FROM public.article_comments
WHERE article_comments.article_id = 2 AND
article_comments.deleted <> true;
ThirdBase
02/04/2022, 11:56 PMSELECT COUNT(*)
FROM public.article_comments
garyaustin
02/05/2022, 12:20 AMThirdBase
02/05/2022, 12:30 AMgaryaustin
02/05/2022, 12:34 AMplpgsql
." I think there is Begin and End involved, etc.
If you want to go further on the discussion you should start a thread though as this is getting longer than mods like...đThirdBase
02/05/2022, 12:34 AMnamchee
02/05/2022, 6:20 AMjoshcowan25
02/05/2022, 8:31 AM