Skip to content

Instantly share code, notes, and snippets.

@orangexception
Created April 18, 2013 18:30
Show Gist options
  • Save orangexception/5415086 to your computer and use it in GitHub Desktop.
Save orangexception/5415086 to your computer and use it in GitHub Desktop.
// MySQL utf8 storage is limited to 3bit characters. When dealing with 4bit characters, then you need to alter the column.
ALTER TABLE `database`.`table` CHANGE COLUMN `Description` `Description` LONGTEXT CHARACTER SET 'utf8mb4' NULL DEFAULT NULL ;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment