You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Same as #23944. The difference is that it affects when you need run ->change().
Steps to reproduce
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();
});
The text was updated successfully, but these errors were encountered:
Description:
Same as #23944. The difference is that it affects when you need run
->change()
.Steps to reproduce
The text was updated successfully, but these errors were encountered: