mysql change innodb_large_prefix
I just setup debian 8.3 on a VM and installed xampp after this Tutorial . Everything is working, until I tried to create a new table: create table testtable ( id int(10) not null auto_increment, firstname varchar(255) collate utf8mb4_german2_ci not null, lastname varchar(255) collate utf8mb4_german2_ci not null, primary key (id), unique key (lastname) )engine = innodb default charset=utf8mb4, collate=utf8mb4_german2_ci I got the error: #1709 - Index column size too large. The maximum column size is 767 bytes. Then I found out this comes from the prefix limitation which is limited to 767Byte in