Skip to content

Instantly share code, notes, and snippets.

@dossy
Last active May 25, 2017 14:17
Show Gist options
  • Save dossy/ebcb741fc17cf2cf2a36 to your computer and use it in GitHub Desktop.
Save dossy/ebcb741fc17cf2cf2a36 to your computer and use it in GitHub Desktop.
alter table wp_posts drop index yarpp_content;
alter table wp_posts modify post_content longtext character set latin1;
alter table wp_posts modify post_content longtext character set binary;
alter table wp_posts modify post_content longtext character set utf8mb4 collate utf8mb4_unicode_ci;
alter table wp_posts default character set utf8mb4 collate utf8mb4_unicode_ci;
alter table wp_posts add fulltext index yarpp_content (post_content);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment