id(); $table->foreignId('user_id')->constrained()->onDelete('cascade'); $table->string('phone')->nullable(); $table->string('linkedin_url')->nullable(); $table->enum('status', ['en_attente', 'en_cours', 'termine'])->default('en_attente'); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('candidates'); } };