id(); $table->jsonb('name'); $table->unsignedBigInteger('region_id'); $table->timestamps(); $table->foreign('region_id')->references('id')->on('regions'); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('cities'); } }