silentworks
02/10/2022, 11:00 AMyongelee
02/10/2022, 5:01 PMlet query = supabase
.from("nft")
.select(
`*,
user_details ( verified_user, id, twitter ),
files:screenshot_file_id (file_name),
admin_actions(*)
`
)
.order("id", { ascending: false });
yongelee
02/10/2022, 5:01 PMadmin_actions(*)
how can i add ascending: false to that?yongelee
02/10/2022, 5:09 PMak4zh
02/10/2022, 7:33 PMpublic.organizations
with created link to auth.users
4) All columns that contains organizations data contains two column user_id
and organization_id
5) RLS policies check if user is a member of the organization using auth.users.raw_user_meta_data
garyaustin
02/10/2022, 8:15 PMSealion
02/10/2022, 8:29 PMak4zh
02/11/2022, 6:44 AMchristianalares
02/11/2022, 8:10 AMsilentworks
02/11/2022, 8:57 AMnixfixbix
02/11/2022, 9:28 AMRaketa
02/11/2022, 11:53 AMjaf
02/11/2022, 12:00 PMhttps://app.supabase.io/project/[project_id]/api
it loads forever. I can still look at the data in the tables thoughsilentworks
02/11/2022, 12:22 PMsilentworks
02/11/2022, 12:25 PMchipilov
02/11/2022, 12:58 PMPalash
02/11/2022, 4:06 PMsilentworks
02/11/2022, 4:18 PMbruno_kiafuka
02/11/2022, 4:38 PMsignIn()
method.
I've added the users into my `auth.users`table using a sql dump from another PostgreSQL db (modified it a bit so I could add the required fields), now when I try running supabase.auth.signIn()
passing the users' `email`and password
I get the following error:
json
"error": {
"message": "Database error querying schema",
"status": 500
}
Yet, If I add a new user using the signUp()
method I am able to login the newly created user without any problems. Is there any thing that I might have done wrong on during the migration process?
> I looked into this discussion https://github.com/supabase/supabase/discussions/3440 and I am unsure if they are related issues as I am not self hosting the db.
Thanks in advance 🙂Rutik
02/11/2022, 5:16 PMProtoFeather
02/11/2022, 5:58 PMProtoFeather
02/11/2022, 5:59 PMNig0
02/11/2022, 6:24 PMDaveo
02/11/2022, 6:47 PMScott P
02/11/2022, 6:49 PMDaveo
02/11/2022, 6:50 PMgaryaustin
02/11/2022, 8:22 PMProtoFeather
02/11/2022, 8:24 PMProtoFeather
02/11/2022, 8:25 PMhttps://whitepanther.club/i/j9thv.png▾
jonny
02/11/2022, 9:06 PM