id(); $table->foreignId('country_id')->constrained()->cascadeOnDelete(); $table->string('name'); $table->string('slug')->nullable()->index(); $table->decimal('latitude', 10, 7)->nullable(); $table->decimal('longitude', 10, 7)->nullable(); $table->json('osm_relation')->nullable(); $table->json('simplified_geojson')->nullable(); $table->unsignedBigInteger('created_by')->nullable(); $table->timestamps(); }); } public function down(): void { Schema::dropIfExists('cities'); } };