Last active
August 30, 2019 18:42
-
-
Save JudeRosario/55be77820e7c427ef89ee9a91217b1f8 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_ZxXPA_options change option_name option_name VARBINARY(64); | |
alter table wp_ZxXPA_options change option_name option_name VARCHAR(64) character set utf8mb4 not null default ''; | |
alter table wp_ZxXPA_options change option_value option_value LONGBLOB; | |
alter table wp_ZxXPA_options change option_value option_value LONGTEXT character set utf8mb4 not null; | |
alter table wp_ZxXPA_options change autoload autoload VARBINARY(20); | |
alter table wp_ZxXPA_options change autoload autoload VARCHAR(20) character set utf8mb4 not null default 'yes'; | |
alter table wp_ZxXPA_options character set utf8mb4 COLLATE utf8mb4_unicode_ci; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment