For future references:
For those of you running into collation issues when executing the MySQL migration script, here's what I had to do:
Replace andWhereLike with andWhereILike in the migration script.
Manually add the "placeholder" column to your database and make sure it can be long enough. (Don't limit it to 255 chars or so). Ideally use TEXT instead of VARCHAR(255).
Enjoy! 💯
For future references: For those of you running into collation issues when executing the MySQL migration script, here's what I had to do:
andWhereLike
withandWhereILike
in the migration script.