usebasejump / basejump

Teams, personal accounts, permissions and billing for your Supabase app
https://usebasejump.com
MIT License
673 stars 63 forks source link

Cannot run db reset on remote database #68

Open thedevdavid opened 6 months ago

thedevdavid commented 6 months ago

Running supabase db reset --linked fails with this error:

ERROR: cannot drop schema basejump because extension basejump-basejump_core requires it (SQLSTATE 2BP01)
At statement 0: DROP SCHEMA IF EXISTS basejump CASCADE                                                  
Try rerunning the command with --debug to troubleshoot the error.
alvin commented 6 months ago

same issue here.

chbert commented 5 months ago

Same here, my workaround is running these commands in sql client:

drop extension "basejump-basejump_core" CASCADE; drop extension "supabase-dbdev" CASCADE;