This commit is contained in:
Paula Quispe
2019-05-09 14:56:36 -04:00
parent 20f8bafe60
commit 093b378220
14 changed files with 1065 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
<?php
/**
* Model factory for a groups
*/
use Faker\Generator as Faker;
$factory->define(\ProcessMaker\Model\Groupwf::class, function(Faker $faker) {
return [
'GRP_UID' => G::generateUniqueID(),
'GRP_ID' => $faker->unique()->numberBetween(1, 2000),
'GRP_TITLE' => $faker->sentence(2),
'GRP_STATUS' => 'ACTIVE',
'GRP_LDAP_DN' => '',
'GRP_UX' => 'NORMAL',
];
});