mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/tickme.git
synced 2026-09-02 11:24:10 +00:00
Initial commit
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
<?php
|
||||
|
||||
/** @var \Illuminate\Database\Eloquent\Factory $factory */
|
||||
|
||||
use Faker\Generator as Faker;
|
||||
|
||||
$factory->define(App\Models\MilestoneTaskAssignee::class, function (Faker $faker) {
|
||||
|
||||
return [
|
||||
'assignee_id' => $faker->word,
|
||||
'assignee_type' => $faker->word,
|
||||
'assignment_id' => $faker->word
|
||||
];
|
||||
});
|
||||
Reference in New Issue
Block a user