mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2024-12-01 04:59:25 -06:00
25 lines
468 B
PHP
Executable File
25 lines
468 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::class);
|
|
$this->call(TransactionCurrencySeeder::class);
|
|
$this->call(TransactionTypeSeeder::class);
|
|
$this->call(PermissionSeeder::class);
|
|
$this->call(TestDataSeeder::class);
|
|
|
|
}
|
|
}
|