id(); $table->foreignIdFor(\App\Models\User::class)->constrained(); $table->double('longitude'); $table->double('latitude'); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('locations'); } };