id(); $table->string('name', 200); $table->string('license_plate', 32)->nullable(); $table->string('owntracks_device_id', 64)->nullable()->unique(); $table->text('notes')->nullable(); $table->timestamps(); $table->index('name'); }); } public function down(): void { Schema::dropIfExists('vehicles'); } };