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