PDOException::("SQLSTATE[42000]: Syntax error or access violation: 1071 Specified key was too long; max key length is 767 bytes")
修改config/database.php中的mysql字符集
'charset' =>
'utf8mb4',
'collation' =>
'utf8mb4_unicode_ci',
为新的
'charset' =>
'utf8',
'collation' =>
'utf8_general_ci',