add three column in user_gateways and use them in controller #30

Merged
amirghasempoor merged 4 commits from feature/GetClient into develop 2026-06-01 13:06:13 +00:00
Showing only changes of commit 69ffe322ce - Show all commits

View File

@@ -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);
});