mirror of
https://github.com/koel/koel
synced 2024-11-10 06:34:14 +00:00
24 lines
552 B
PHP
24 lines
552 B
PHP
<?php
|
|
|
|
namespace Database\Factories;
|
|
|
|
use App\Models\Interaction;
|
|
use App\Models\Song;
|
|
use App\Models\User;
|
|
use Illuminate\Database\Eloquent\Factories\Factory;
|
|
|
|
class InteractionFactory extends Factory
|
|
{
|
|
protected $model = Interaction::class;
|
|
|
|
/** @return array<mixed> */
|
|
public function definition(): array
|
|
{
|
|
return [
|
|
'song_id' => Song::factory(),
|
|
'user_id' => User::factory(),
|
|
'liked' => $this->faker->boolean(),
|
|
'play_count' => $this->faker->randomNumber(),
|
|
];
|
|
}
|
|
}
|