rename a column and drop in laravel migration code example
Example 1: laravel migration remove column
public function up()
{
Schema::table('table', function($table) {
$table->dropColumn('column_name');
});
}
Example 2: migration rename column laravel
php artisan make:migration rename_author_id_in_posts_table --table=posts