Last active
May 25, 2017 14:17
-
-
Save dossy/ebcb741fc17cf2cf2a36 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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