diff --git a/backend/database/migrations/2026_06_01_102551_add_client_credentials_to_user_gateways_table.php b/backend/database/migrations/2026_06_01_102551_add_client_credentials_to_user_gateways_table.php index 29c56dce..e4c49c57 100644 --- a/backend/database/migrations/2026_06_01_102551_add_client_credentials_to_user_gateways_table.php +++ b/backend/database/migrations/2026_06_01_102551_add_client_credentials_to_user_gateways_table.php @@ -24,7 +24,7 @@ return new class extends Migration public function down(): void { Schema::table('user_gateways', function (Blueprint $table) { - $table->dropColumn('client_id', 'client_secret','status'); + $table->dropColumn(['client_id', 'client_secret','status']); }); } };