Skip to content

Instantly share code, notes, and snippets.

@JohnPreston
Created September 14, 2014 08:40
Show Gist options
  • Select an option

  • Save JohnPreston/a7825462fc3a79403d6b to your computer and use it in GitHub Desktop.

Select an option

Save JohnPreston/a7825462fc3a79403d6b to your computer and use it in GitHub Desktop.
DB Cleanup
delete from volume_exports where token in (select id from volume_tokens where volume in (select id from volumes where status='deleted'));
delete from volume_tokens where volume in (select id from volumes where status='deleted');
delete from volumes where status='deleted';
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment