fix migration

This commit is contained in:
2026-06-01 15:34:54 +03:30
parent a1466d8f57
commit 69ffe322ce

View File

@@ -12,7 +12,7 @@ return new class extends Migration
public function up(): void public function up(): void
{ {
Schema::table('user_gateways', function (Blueprint $table) { Schema::table('user_gateways', function (Blueprint $table) {
$table->string('client_id')->unique()->nullable(); $table->string('client_id')->nullable();
$table->string('client_secret')->nullable(); $table->string('client_secret')->nullable();
$table->integer('status')->default(0); $table->integer('status')->default(0);
}); });