get the generated IDs from the middle of the sha1 hash

This commit is contained in:
Nabeel Shahzad 2018-01-02 11:23:38 -06:00
parent 080e8842ac
commit 93786835af
3 changed files with 3 additions and 3 deletions

View File

@ -4,7 +4,7 @@ use Faker\Generator as Faker;
$factory->define(App\Models\Acars::class, function (Faker $faker) {
return [
'id' => substr($faker->unique()->sha1, 0, 12),
'id' => substr($faker->unique()->sha1, 28, 12),
'pirep_id' => '', # fill this out by
'log' => $faker->text(200),
'lat' => $faker->latitude,

View File

@ -8,7 +8,7 @@ $airlinesAvailable = [1];
$factory->define(App\Models\Flight::class, function (Faker $faker) use ($airlinesAvailable) {
return [
'id' => substr($faker->unique()->sha1, 0, 12),
'id' => substr($faker->unique()->sha1, 28, 12),
'airline_id' => $faker->randomElement($airlinesAvailable),
'flight_number' => $faker->unique()->text(10),
'route_code' => $faker->randomElement(['', $faker->text(5)]),

View File

@ -10,7 +10,7 @@ $factory->define(App\Models\Pirep::class, function (Faker $faker) {
static $raw_data;
return [
'id' => substr($faker->unique()->sha1, 0, 12),
'id' => substr($faker->unique()->sha1, 28, 12),
'airline_id' => function () { # OVERRIDE THIS IF NEEDED
return factory(App\Models\Airline::class)->create()->id;
},