Переименование полей миграции
Для переименования полей используется метод renameColumn
:
database/migrations/метка.create_posts_table.php<?php
class CreatePostsTable extends Migration
{
public function up()
{
Schema::table('posts', function (Blueprint $table) {
$table->renameColumn('name', 'title');
});
}
public function down()
{
Schema::dropIfExists('posts');
}
}