id(); $table->unsignedBigInteger('user_id'); $table->string('codigo'); $table->dateTime('registro')->nullable(); $table->string('latitud'); $table->string('longitud'); $table->timestamps(); }); } public function down(): void { Schema::dropIfExists('codes'); } };