id(); // Datos del vehĂ­culo detectado $table->string('epc'); $table->string('vin')->nullable(); $table->string('placa')->nullable(); $table->string('marca')->nullable(); $table->string('modelo')->nullable(); $table->string('color')->nullable(); $table->timestamp('fecha_deteccion')->useCurrent(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('detections'); } };