1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Laravel Fakerで複合主キーのあるデータをseeding

Posted at

キーの組み合わせをuniqueにする必要がある。
ポイントは2つのModelのキーのcollectionをcrossJoin()で繋げてるとこ。


use Faker\Generator as Faker;

$factory->define(Model::class, function (Faker $faker) {
    $idsA = ModelA::all()->pluck('id');
    $idsB = ModelB::all()->pluck('id');
    $matrix = $idsA->crossJoin($idsB);
    $keypair = $faker->unique()->randomElement($matrix);
    return [
        'aid' => $keypair[0],
        'bid' => $keypair[1],
    ];
});
1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?