When using ddev import-db
to import a production db dump for TYPO3 9 into a ddev project I had a mysql error:
"Index column size too large. The maximum column size is 767 bytes."
This seems to be the result of importing a regular utf8 charset db into ddev, which is set up for utf8mb4, using 4 bytes for character, and overrunning the index column size.
What's the solution? (Besides changing the column definition, changing my prod site and db, etc.)