id(); $table->foreignId('sales_user_id')->constrained('users')->onDelete('cascade'); $table->string('company_name', 100); $table->string('contact_person', 100)->nullable(); $table->string('email', 100)->nullable(); $table->string('phone', 20)->nullable(); $table->text('notes')->nullable(); $table->timestamps(); $table->index('sales_user_id'); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('prospects'); } };