Created
April 18, 2013 18:30
-
-
Save orangexception/5415086 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
// 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