We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
for MySQL in utf8mb4, the lngfile column is set to 255 which causes issues on saving due to the way utf8mb4 requires more storage than utf8 or latin
Not every install can use inno to enable innodb_large_prefix so the only feasible solution is to limit the lngfile column to 250 length
Ref: https://www.simplemachines.org/community/index.php?topic=573832.msg4061249#msg4061249
The text was updated successfully, but these errors were encountered:
make lngfile shorter so as not to exceed max index bytesize limit
73e9ddc
fixes SimpleMachines#6163
Successfully merging a pull request may close this issue.
Description
for MySQL in utf8mb4, the lngfile column is set to 255 which causes issues on saving due to the way utf8mb4 requires more storage than utf8 or latin
Steps to reproduce
Environment (complete as necessary)
Additional information/references
Not every install can use inno to enable innodb_large_prefix so the only feasible solution is to limit the lngfile column to 250 length
Ref: https://www.simplemachines.org/community/index.php?topic=573832.msg4061249#msg4061249
The text was updated successfully, but these errors were encountered: