PMCORE-2396

This commit is contained in:
Andrea Adamczyk
2020-12-07 09:21:51 -04:00
parent b55e95fa33
commit 3cc4baff8e
6 changed files with 47 additions and 18 deletions

View File

@@ -34,7 +34,8 @@ $factory->define(\ProcessMaker\Model\Delegation::class, function(Faker $faker) {
'USR_ID' => $user->USR_ID,
'PRO_ID' => $process->PRO_ID,
'TAS_ID' => $task->TAS_ID,
'DEL_DATA' => ''
'DEL_DATA' => '',
'DEL_TITLE' => $faker->word()
];
});
@@ -73,7 +74,8 @@ $factory->state(\ProcessMaker\Model\Delegation::class, 'foreign_keys', function
'USR_ID' => $user->USR_ID,
'PRO_ID' => $process->PRO_ID,
'TAS_ID' => $task->TAS_ID,
'DEL_DATA' => ''
'DEL_DATA' => '',
'DEL_TITLE' => $faker->word()
];
});