Cleanup factories and seed data for airport timezone column change

This commit is contained in:
Nabeel Shahzad
2018-02-06 13:11:42 -06:00
parent 531c7ddba3
commit 7d8dc2a4d4
12 changed files with 33 additions and 36 deletions

View File

@@ -8,7 +8,7 @@ $factory->define(App\Models\User::class, function (Faker $faker)
static $password;
return [
#'id' => $faker->unique()->numberBetween(10, 10000),
'id' => null,
'name' => $faker->name,
'email' => $faker->safeEmail,
'password' => $password ?: $password = Hash::make('secret'),