mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-10 15:44:11 -08:00
ac9fd3b3bb
* Update LicensesController.php Should fix #2939. Cannot test at the moment, so please check :) * Add delete tests. Improve test item generation. * Add relationship here. * Fix some issues with seeding.
37 lines
1,002 B
PHP
37 lines
1,002 B
PHP
<?php
|
|
|
|
use Illuminate\Database\Seeder;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class DatabaseSeeder extends Seeder
|
|
{
|
|
/**
|
|
* Run the database seeds.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function run()
|
|
{
|
|
Model::unguard();
|
|
|
|
$this->call(CompanySeeder::class);
|
|
$this->call(UserSeeder::class);
|
|
$this->call(ManufacturerSeeder::class);
|
|
$this->call(LocationSeeder::class);
|
|
$this->call(AssetModelSeeder::class);
|
|
$this->call(AccessorySeeder::class);
|
|
$this->call(AssetSeeder::class);
|
|
$this->call(ComponentSeeder::class);
|
|
$this->call(ConsumableSeeder::class);
|
|
$this->call(StatuslabelSeeder::class);
|
|
$this->call(SupplierSeeder::class);
|
|
$this->call(CategorySeeder::class);
|
|
$this->call(LicenseSeeder::class);
|
|
$this->call(ActionlogSeeder::class);
|
|
$this->call(DepreciationSeeder::class);
|
|
$this->call(CustomFieldSeeder::class);
|
|
|
|
Model::reguard();
|
|
}
|
|
}
|