How to delete all bookmarks?

Currently I am testing Bookmark App and floccus (https://addons.mozilla.org/en-US/firefox/addon/floccus/).

How to delete all bookmarks from nextcloud? I am using SQLite as database in nextcloud, so my basic idea would be a simple delete command:

sqlite3 owncloud.db "delete from oc_bookmarks; delete from oc_bookmarks_tags;"

Would this be sufficient?

1 Like

Yes, that’s sufficient. It removes all bookmarks from all users, however. So, be sure that you want that.

If you only want to remove the bookmarks of one user you will need to remove by userid.

I think this will be resolved with the awesome new release of the bookmarks app?

It will get easier to delete many bookmarks at once, yes :slight_smile:

(See Help test Bookmarks v0.12 )