mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-09 23:24:06 -08:00
Changed the seeder order to accomodate actionlog factory
Signed-off-by: snipe <snipe@snipe.net>
This commit is contained in:
parent
7042260871
commit
6c996ac8fa
|
@ -38,12 +38,13 @@ class DatabaseSeeder extends Seeder
|
||||||
$this->call(DepreciationSeeder::class);
|
$this->call(DepreciationSeeder::class);
|
||||||
$this->call(StatuslabelSeeder::class);
|
$this->call(StatuslabelSeeder::class);
|
||||||
$this->call(AccessorySeeder::class);
|
$this->call(AccessorySeeder::class);
|
||||||
|
$this->call(CustomFieldSeeder::class);
|
||||||
$this->call(AssetSeeder::class);
|
$this->call(AssetSeeder::class);
|
||||||
$this->call(LicenseSeeder::class);
|
$this->call(LicenseSeeder::class);
|
||||||
$this->call(ComponentSeeder::class);
|
$this->call(ComponentSeeder::class);
|
||||||
$this->call(ConsumableSeeder::class);
|
$this->call(ConsumableSeeder::class);
|
||||||
$this->call(ActionlogSeeder::class);
|
$this->call(ActionlogSeeder::class);
|
||||||
$this->call(CustomFieldSeeder::class);
|
|
||||||
|
|
||||||
Artisan::call('snipeit:sync-asset-locations', ['--output' => 'all']);
|
Artisan::call('snipeit:sync-asset-locations', ['--output' => 'all']);
|
||||||
$output = Artisan::output();
|
$output = Artisan::output();
|
||||||
|
|
Loading…
Reference in a new issue