Add subuser deletion service

This commit is contained in:
Dane Everitt 2017-08-26 13:31:18 -05:00
parent 74ea1aa0aa
commit 2cabb61b54
No known key found for this signature in database
GPG key ID: EEA66103B3D71F53
6 changed files with 276 additions and 1 deletions

View file

@ -16,7 +16,8 @@
$factory->define(Pterodactyl\Models\Server::class, function (Faker\Generator $faker) {
return [
'id' => $faker->unique()->randomNumber(),
'uuid' => $faker->uuid,
'node_id' => $faker->randomNumber(),
'uuid' => $faker->unique()->uuid,
'uuidShort' => str_random(8),
'name' => $faker->firstName,
'description' => implode(' ', $faker->sentences()),