id(); $table->unsignedBigInteger('user_id')->nullable()->index(); $table->string('name')->nullable(); $table->string('imei', 32)->unique(); $table->boolean('is_active')->default(true); $table->timestamp('last_seen_at')->nullable()->index(); $table->string('last_ip')->nullable(); $table->string('firmware_version')->nullable(); $table->string('hardware_version')->nullable(); $table->timestamps(); }); } public function down(): void { Schema::dropIfExists('devices'); } };