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();
});
Description:
Same as #23944. The difference is that it affects when you need run
->change().Steps to reproduce