Skip to content

Instantly share code, notes, and snippets.

@thisirs
Created October 11, 2013 16:44
Show Gist options
  • Save thisirs/6938075 to your computer and use it in GitHub Desktop.
Save thisirs/6938075 to your computer and use it in GitHub Desktop.
Get rid of empty directories in firefox bookmarks
-- Get rid of empty directories in firefox bookmarks
DELETE FROM moz_bookmarks
WHERE type = 2
AND id > 5
AND id NOT IN (
SELECT DISTINCT parent FROM moz_bookmarks)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment