Files
snipe-it/app/database/seeds/DatabaseSeeder.php
T
snipe 284645fa7c Added depreciation seed to DatabaseSeeder file
depreciation seed info wasn't being included in the initial seed
2013-11-17 22:49:12 -05:00

23 lines
368 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');
}
}