mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 00:42:41 +01:00
6aa729b1c9
Summary: `116.utf8.sql` throws this under MySQL 5.5: > Column length too big for column 'keyBody' (max = 21845); use BLOB or TEXT instead I guess that's because MySQL 5.5 changed maximum length of UTF-8 character from 3 bytes to 4. I've updated also `116.utf8.sql` for people with new installs. Test Plan: upgrade_schema.php Reviewers: epriestley Reviewed By: epriestley CC: aran Differential Revision: https://secure.phabricator.com/D2117
2 lines
87 B
SQL
2 lines
87 B
SQL
ALTER TABLE `phabricator_user`.`user_sshkey`
|
|
MODIFY `keyBody` text COLLATE utf8_bin;
|