Haus Of Alejandro
06/12/2022, 10:42 PMNeedle
06/12/2022, 10:42 PMsilentworks
06/12/2022, 10:49 PMpg_dump
, you can do this with the command below from inside of the Supabase Dashboard using the SQL Editor
sql
ALTER USER postgres WITH SUPERUSER;
After the pg_dump
has completed, remember to go back in the SQL Editor and de-elevate the postgres user.
sql
ALTER USER postgres WITH NOSUPERUSER;
Needle
06/13/2022, 5:13 PM