id(); $table->string('name', 100); $table->unsignedBigInteger('region_id'); $table->timestamps(); $table->foreign('region_id')->references('id')->on('regiones'); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('barrios'); } };