Skip to content

Instantly share code, notes, and snippets.

@codemonkey-jack
Last active June 7, 2016 17:32
Show Gist options
  • Save codemonkey-jack/86117b995a95724ab34d1313a3e536f3 to your computer and use it in GitHub Desktop.
Save codemonkey-jack/86117b995a95724ab34d1313a3e536f3 to your computer and use it in GitHub Desktop.
Remove revisions from posts
DELETE a,b,c FROM wp_posts a
LEFT JOIN wp_term_relationships b ON (a.ID = b.object_id)
LEFT JOIN wp_postmeta c ON (a.ID = c.post_id)
WHERE a.post_type = 'revision'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment