id(); $table->string('first_name'); $table->string('last_name'); $table->timestamps(); }); Schema::enableForeignKeyConstraints(); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('participants'); } };