@EliasSoares Upon checking the Laravel 5.1 Migration Docs for Modifying Columns
Note: Renaming columns in a table with a enum column is not currently supported.
Renaming Columns
To rename a column, you may use the
renameColumnmethod on the Schema builder. Before renaming a column, be sure to add thedoctrine/dbaldependency to yourcomposer.jsonfile:
Schema::table('users', function ($table) {
$table->renameColumn('from', 'to');
});
Note: Renaming columns in a table with a enum column is not currently supported.
Also a question on StackOverflow about this issue.