Files
snipe-it/app/database/seeds/DatabaseSeeder.php
T
2014-06-24 17:49:39 -04:00

28 lines
637 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');
}
}