284645fa7c
depreciation seed info wasn't being included in the initial seed
23 lines
368 B
PHP
Executable File
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');
|
|
}
|
|
|
|
}
|