Skip to content

Instantly share code, notes, and snippets.

@JudeRosario
Last active August 30, 2019 18:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save JudeRosario/55be77820e7c427ef89ee9a91217b1f8 to your computer and use it in GitHub Desktop.
Save JudeRosario/55be77820e7c427ef89ee9a91217b1f8 to your computer and use it in GitHub Desktop.
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