renameColumn('title', 'name'); $table->renameColumn('description', 'comment'); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::table('gifts', function (Blueprint $table) { $table->renameColumn('name', 'title'); $table->renameColumn('comment', 'description'); }); } }