Changing column in Laravel migration causes exception: Changing columns for table requires Doctrine DBAL
The problem was solved by executing the following command on the root directory of the framework:
composer require doctrine/dbal
add to composer.json
"require": {
...
"doctrine/dbal": "*"
},
run "composer update" command