id(); $table->text('name'); $table->double('lat')->nullable(); $table->double('lng')->nullable(); $table->unsignedBigInteger('state_id'); $table->timestamps(); $table->softDeletes(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('cities'); } };