thestepafter
06/28/2022, 12:14 AMjvocodes
06/28/2022, 12:56 AMsupabase.auth.api.createUser()
mattdeere
06/28/2022, 4:40 AMimousart
06/28/2022, 4:41 AMNilu
06/28/2022, 7:11 AMChrisPBacon
06/28/2022, 8:36 AMlet { data, error } = await supabase.auth.api.resetPasswordForEmail(email)
2) After the link in the email is clicked I should be redirecting the user to an update password form (yet to be implemented)
3) At this point though, without updating the password, I can still sign in with the old password.
Will the old password still function since the old one hasn't been changed despite the user clicking the reset password link from the email?LEGEND
06/28/2022, 9:42 AMRevxrsal
06/28/2022, 9:50 AMEvostance
06/28/2022, 10:13 AMupdate
on it that will only update existing fields or add new ones? I want it to act as a PATCH rather than a PUTjacasch
06/28/2022, 10:25 AMjaitaiwan
06/28/2022, 10:31 AMSneha Singh
06/28/2022, 10:54 AMDembe
06/28/2022, 12:52 PMChrisPBacon
06/28/2022, 1:02 PMNARCISO
06/28/2022, 1:03 PMsupabase db reset
BUT on the Remote DB?jackjackk
06/28/2022, 3:23 PMKelaos
06/28/2022, 3:54 PMgerry
06/28/2022, 4:32 PMjarcher
06/28/2022, 7:10 PMda newb
06/28/2022, 9:10 PMsupabase/studio:latest
supabase/postgres-meta:v0.33.2
supabase/pgadmin-schema-diff:cli-0.0.4
supabase/storage-api:v0.15.0
postgrest/postgrest:v9.0.0.20220211
supabase/realtime:v0.22.4
inbucket/inbucket:stable
supabase/gotrue:v2.6.18
kong:2.1
supabase/postgres:14.1.0.21
I have a table discovery.nfts
and a table in public.likes
that has a foreign key to discovery.nfts
. I am running a DDL migration that alters the schema, and now I'm getting warnings for PostgREST that the relation between public.likes
and discovery.nfts
cannot be found. I tried both
docker kill -s SIGUSR1 <postgrest container id>
NOTIFY pgrst, 'reload schema';
I confirmed that PostgREST said the schema was reloaded, but I still get the errorstijn
06/28/2022, 10:06 PMunique_together
constraint exist in Supabase?
I'm working with a habit-entries
table that has a habit, date, and user row. It stores which habits a user did on which date. To avoid duplicate entries I'd like to add a unique_together
constraint for like in Django: https://docs.djangoproject.com/en/4.0/ref/models/options/#unique-together (in this case it would be unique_together = ['user_id', 'habit_id', 'date']
)
Is this possible and if so can someone redirect me to the resource/tutorial? I couldn't find anything😅gerry
06/28/2022, 11:55 PMjar
06/29/2022, 12:19 AMMasterBetty
06/29/2022, 1:04 AMthestepafter
06/29/2022, 1:52 AMhmean
06/29/2022, 1:59 AMItsPolder
06/29/2022, 11:07 AMSajad
06/29/2022, 11:23 AMRelisora
06/29/2022, 11:58 AMcount
and noticed that it is "exact"
in the docs. I was wondering if there were other options, like "estimate"
that could make my request faster.
Example:
js
.select('*', { count: 'exact', head: true })
Murkrage
06/29/2022, 12:54 PM