auth
CLIsupabase db reset(owner_id = auth.uid()) so I need to fill in owner_id with valid user. I can create the user in the first step of seeding via something like INSERT INTO auth.users (id, email, raw_user_meta_data, created_at) VALUES ( '25d62eed-4b9f-43cc-b942-6c433ac683a6'::uuid, 'john@example.com [blocked]', '{"email_confirmed": true}'::jsonb, now() );, and then use that record. But to my best knowledge it's not possible to set the password for such user.supabase db reset --no-seed, then have a JS script that calls supabase.auth.signUp({ email: ..., password: ... }), but then (to my best knowledge) there is no command to just run the seeds and I would have to do that manually. Which is possible, but ...