doctrine/dbal
dependency to your composer.json file. This package is no longer included in Laravel by default.So, just include
"doctrine/dbal":"*",
as a dependency in composer.json.
Update by running
composer update:
In migration class, you can use
renameColumn
method like the following:
Schema::table('TABLE_NAME', function($table)
{
$table->renameColumn('OLD_COLUMN_NAME', 'NEW_COLUMN_NAME');
});