foreign para abajo del todo

This commit is contained in:
Alejandro Tasistro 2024-03-12 17:43:43 -03:00
parent 4b77fd9b36
commit bda994bc69
2 changed files with 2 additions and 2 deletions

View File

@ -15,8 +15,8 @@ public function up(): void
$table->id(); $table->id();
$table->string('name', 100); $table->string('name', 100);
$table->unsignedBigInteger('region_id'); $table->unsignedBigInteger('region_id');
$table->foreign('region_id')->references('id')->on('regiones');
$table->timestamps(); $table->timestamps();
$table->foreign('region_id')->references('id')->on('regiones');
}); });
} }

View File

@ -15,8 +15,8 @@ public function up(): void
$table->id(); $table->id();
$table->string('name', 100); $table->string('name', 100);
$table->unsignedBigInteger('barrio_id'); $table->unsignedBigInteger('barrio_id');
$table->foreign('barrio_id')->references('id')->on('barrios');
$table->timestamps(); $table->timestamps();
$table->foreign('barrio_id')->references('id')->on('barrios');
}); });
} }