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