From 69ffe322ce75d0a029dd641a67bdf81e98806e13 Mon Sep 17 00:00:00 2001 From: faezehzafarbakhsh Date: Mon, 1 Jun 2026 15:34:54 +0330 Subject: [PATCH] fix migration --- ..._01_102551_add_client_credentials_to_user_gateways_table.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 e4c49c57..db86590a 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 @@ -12,7 +12,7 @@ return new class extends Migration public function up(): void { Schema::table('user_gateways', function (Blueprint $table) { - $table->string('client_id')->unique()->nullable(); + $table->string('client_id')->nullable(); $table->string('client_secret')->nullable(); $table->integer('status')->default(0); });