Files
firefly-iii/app/database/seeds/DatabaseSeeder.php

23 lines
415 B
PHP
Raw Normal View History

2014-06-28 09:41:44 +02:00
<?php
class DatabaseSeeder extends Seeder
{
2014-06-28 09:41:44 +02:00
/**
* Run the database seeds.
*
* @return void
*/
public function run()
{
Eloquent::unguard();
2014-06-28 09:41:44 +02:00
$this->call('AccountTypeSeeder');
$this->call('TransactionCurrencySeeder');
$this->call('TransactionTypeSeeder');
$this->call('ComponentTypeSeeder');
$this->call('DefaultUserSeeder');
}
2014-06-28 09:41:44 +02:00
}