Files
snipe-it/app/database/seeds/DatabaseSeeder.php
T
2013-11-22 03:17:32 -05:00

25 lines
438 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');
}
}