basejump icon indicating copy to clipboard operation
basejump copied to clipboard

Cannot run db reset on remote database

Open thedevdavid opened this issue 1 year ago • 2 comments

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.

thedevdavid avatar Feb 23 '24 20:02 thedevdavid

same issue here.

alvin avatar Feb 24 '24 19:02 alvin

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

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

chbert avatar Apr 16 '24 21:04 chbert