Files
snipe-it/app/database/seeds/DatabaseSeeder.php
T
2015-09-15 03:41:37 -07:00

31 lines
767 B
PHP
Executable File

<?php
class DatabaseSeeder extends Seeder
{
/**
* Run the database seeds.
*
* @return void
*/
public function run()
{
Eloquent::unguard();
$this->call('AssetsSeeder');
$this->call('CategoriesSeeder');
$this->call('LocationsSeeder');
$this->call('ManufacturersSeeder');
$this->call('ModelsSeeder');
$this->call('DepreciationsSeeder');
$this->call('StatuslabelsSeeder');
$this->call('SettingsSeeder');
$this->call('LicensesSeeder');
$this->call('LicenseSeatsSeeder');
$this->call('ActionlogSeeder');
$this->call('AccessoriesSeeder');
$this->call('AssetMaintenancesSeeder');
$this->call('SuppliersSeeder');
}
}