Rearrange seeder order so that users validate properly on first seed run. This hopefully fixes the actionlog seeder error.

This commit is contained in:
Daniel Meltzer 2020-04-28 12:14:23 -04:00
parent 3e7fbb02b7
commit 61a216a531
No known key found for this signature in database
GPG key ID: 91C5C7B09A5B1CA0

View file

@ -23,11 +23,11 @@ class DatabaseSeeder extends Seeder
$this->call(CompanySeeder::class);
$this->call(CategorySeeder::class);
$this->call(LocationSeeder::class);
$this->call(UserSeeder::class);
$this->call(DepreciationSeeder::class);
$this->call(DepartmentSeeder::class);
$this->call(ManufacturerSeeder::class);
$this->call(LocationSeeder::class);
$this->call(SupplierSeeder::class);
$this->call(AssetModelSeeder::class);
$this->call(DepreciationSeeder::class);