renameColumn('credit_product_id', 'shop_item_product_id'); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::rename('shop_products', 'credit_products'); Schema::table('payments', function (Blueprint $table) { $table->renameColumn('shop_item_product_id', 'credit_product_id'); }); } };