From 6555b3a49d81ed68f8c0e1d8b8e464c9b42f96c6 Mon Sep 17 00:00:00 2001 From: snipe Date: Sat, 7 Oct 2017 04:36:23 -0700 Subject: [PATCH] No location id in licenses? --- database/factories/LicenseFactory.php | 1 - 1 file changed, 1 deletion(-) diff --git a/database/factories/LicenseFactory.php b/database/factories/LicenseFactory.php index 0f7b92ffd4..5b65deda24 100644 --- a/database/factories/LicenseFactory.php +++ b/database/factories/LicenseFactory.php @@ -15,7 +15,6 @@ $factory->define(App\Models\License::class, function (Faker\Generator $faker) { return [ 'user_id' => 1, - 'location_id' => rand(1,5), 'serial' => $faker->uuid, 'notes' => 'Created by DB seeder', 'purchase_date' => $faker->dateTimeBetween('-1 years','now', date_default_timezone_get()),