mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2024-12-01 04:59:25 -06:00
25 lines
443 B
PHP
Executable File
25 lines
443 B
PHP
Executable File
<?php
|
|
|
|
use Illuminate\Database\Seeder;
|
|
|
|
/**
|
|
* Class DatabaseSeeder
|
|
*/
|
|
class DatabaseSeeder extends Seeder
|
|
{
|
|
/**
|
|
* Run the database seeds.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function run()
|
|
{
|
|
$this->call('AccountTypeSeeder');
|
|
$this->call('TransactionCurrencySeeder');
|
|
$this->call('TransactionTypeSeeder');
|
|
$this->call('PermissionSeeder');
|
|
$this->call('TestDataSeeder');
|
|
|
|
}
|
|
}
|