Browse Source

conflict after live changes

Carello Qwerty 5 years ago
parent
commit
c5be082925
1 changed files with 3 additions and 0 deletions
  1. 3 0
      database/factories/LocationFactory.php

+ 3 - 0
database/factories/LocationFactory.php

@@ -16,11 +16,14 @@ $factory->define(Location::class, function (Faker $faker) {
         $lngArray[] = $lng;
         $lngArray[] = $lng;
         $lng += 0.00715;
         $lng += 0.00715;
     }
     }
+    $time = Carbon::now()->subDays(rand(1, 10))->subHours(rand(8, -8));
 
 
     return [
     return [
         'lat' => array_random($latArray),
         'lat' => array_random($latArray),
         'lng' => array_random($lngArray),
         'lng' => array_random($lngArray),
         'created_at' => Carbon::now()->subDays(rand(1, 10))->subHours(rand(8, -8)),
         'created_at' => Carbon::now()->subDays(rand(1, 10))->subHours(rand(8, -8)),
+	    'created_at' => $time,
+	    'updated_at' => $time,
         'user_id' => null,//
         'user_id' => null,//
     ];
     ];
 });
 });