Supabase signup process in one command or several commands

Hi,

I’m setting up a user signup process and found @Joyce videos on onboarding and using a separate table in the Supabase public schema very helpful.

I’d like to collect additional info at signup (e.g., name, country, timezone) and store it in selected public tables while enrolling the user. Joyce suggests adding JSON to the raw_user_meta_data field, but I’m concerned the trigger/function to transfer data from the auth table to public tables might fail without flagging an issue in WeWeb.

Is it recommended to use a single signup transaction using the raw_user_meta_data field and triggers, or splitting it into several workflow commands to send all the data to the required supabase tables?

Thanks!

It’s the same thing. Just make sure to test it properly :slight_smile: Both options are viable.

1 Like