Schema::create('addresses', function (Blueprint $blueprint) {
// That will works, once that was fixed by #23989.
$blueprint->string('addressable_type')->collation('binary');
});
Schema::table('addresses', function (Blueprint $blueprint) {
// That is the current problem.
$blueprint->string('addressable_type', 400)->collation('binary')->change();
});