string('currency_code', 3)->default('USD')->after('price'); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::table('payments', function (Blueprint $table) { $table->dropColumn('currency_code'); }); } };