id(); $table->string('name'); $table->timestamps(); }); DB::table('cities')->insert([ ['id' => 1, 'name' => 'Иркутск'], ['id' => 2, 'name' => 'Хабаровск'] ]); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('cities'); } };