Rearrange seeder order so that users validate properly on first seed run. This hopefully fixes the actionlog seeder error.
This commit is contained in:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user