Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save seemly/e81791e94f60e3abf946e82a0cc15a4d to your computer and use it in GitHub Desktop.
Save seemly/e81791e94f60e3abf946e82a0cc15a4d to your computer and use it in GitHub Desktop.
MySQL query to delete Flamingo WordPress plugin Inbound Messages.
START TRANSACTION;

DELETE FROM wp_posts
WHERE wp_posts.post_type = 'flamingo_inbound';

ROLLBACK;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment