id(); $table->foreignId('client_id')->references('id')->on('users'); $table->foreignId('complex_id')->references('id')->on('complexes')->onDelete('cascade'); $table->foreignId('agent_id')->references('id')->on('agents')->onDelete('cascade'); $table->string('bitrix_id')->nullable(); $table->string('confirm_token')->nullable(); $table->enum('status',['NEW','MODERATION','UNIQUE','NOT UNIQUE'])->default('NEW'); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('clients'); } };