| Q | A
|------------ | ------
| BC Break | no
| Version | v2.6.2
I've got the following error SQLSTATE[42000]: Syntax error or access violation: 1071 Specified key was too long; max key length is 767 bytes while try to use the orm:schema-tool:update --force command.
I've get an SQL error on CREATE TABLE SQLSTATE[42000]: Syntax error or access violation: 1071 Specified key was too long; max key length is 767 bytes
Project (Skeleton App):
https://github.com/chubbyphp/petstore
Mapping:
https://github.com/chubbyphp/petstore/blob/master/app/Mapping/Orm/PetMapping.php
Works on Travis with 2.5.14
https://travis-ci.org/chubbyphp/petstore/jobs/435299083
Failed on Travis, with v2.6.2
https://travis-ci.org/chubbyphp/petstore/jobs/435299084
In AbstractMySQLDriver.php line 126:
An exception occurred while executing 'CREATE TABLE pet (id VARCHAR(255) NO
T NULL, createdAt DATETIME NOT NULL, updatedAt DATETIME DEFAULT NULL, name
VARCHAR(255) NOT NULL, tag VARCHAR(255) DEFAULT NULL, PRIMARY KEY(id)) DEFA
ULT CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci ENGINE = InnoDB':
SQLSTATE[42000]: Syntax error or access violation: 1071 Specified key was t
oo long; max key length is 767 bytes
A successful table creation as in v2.5.14
utf8mb4_unicode_ci is the new default for column creation, hence you need to either reduce the size of your indexed VARCHAR columns in order to make them work correctly, since MySQL can't index them otherwise.
The limit for a VARCHAR column being indexed is 191 characters.
See also https://stackoverflow.com/questions/15157227/mysql-varchar-index-length
Closing here, as this is a MySQL specific error, and we can't change the default for VARCHAR to 191 chars due to BC compliance, while requiring users to create custom indexes is less impacting.
@Ocramius ok thanks, idea why this works on ORM v2.5.14?
Default encoding used to just be utf8, which uses 3 bytes per character, while utf8mb4 (TL;DR of the story: emojis don't really work on just utf8) uses 4 bytes per character. Index size limits in MySQL are in bytes, not characters.
This means, that doctrine/dbal: 2.5.0, doctrine/orm: 2.5.14 makes utf8mb4 implicit to utf8 on a create table. At leas this ones seems to be a a bug to me. See: https://travis-ci.org/chubbyphp/petstore/jobs/435961586
As already stated, the default used to be utf8, and it changed for good reasons.
@ocramius I fully agree this SQL error is not doctrine fault, I fully agree that changing to utf8mb4 is a good choice. But i am not speaking about default, i ask both versions for utf8mb4 and the ORM made utf8 out of it. No error utf8mb4 is not supported or handle it correctly in 2.5 versions https://github.com/chubbyphp/chubbyphp-doctrine-db-service-provider/blob/master/src/ServiceProvider/DoctrineDbalServiceProvider.php#L120
2.5 won't get fixes unless it's about security issues
@Ocramius fair enough, thanks for response
Change Laravel default database (utf8mb4) properties in file config/database.php to:
'charset' => 'utf8',
'collation' => 'utf8_unicode_ci',
Change Laravel default database (utf8mb4) properties in file config/database.php to:
'charset' => 'utf8', 'collation' => 'utf8_unicode_ci',
Worked in my case when run php artisan migrate --seed
Changing MariaDb config fixed this issue for me :
in my.cnf :
innodb_large_prefix=true
innodb_file_format=barracuda
innodb_default_row_format=dynamic
innodb_file_per_table=true
Restart mariadb
Hope this help
Most helpful comment
Change Laravel default database (utf8mb4) properties in file config/database.php to: