1
0
Fork 0

database/factories/CardFactory.php: Adding jackpot.

This commit is contained in:
Henrik Hautakoski 2023-02-19 15:41:37 +01:00
parent 650263602d
commit 0ee6592b63

View file

@ -30,7 +30,8 @@ class CardFactory extends Factory
return [
'raid_id' => null,
'character_id' => null,
'body' => join(" ", $words)
'body' => join(" ", $words),
'jackpot' => (int) $this->faker->boolean(),
];
}