mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2024-11-25 18:30:55 -06:00
31 lines
539 B
PHP
31 lines
539 B
PHP
<?php
|
|
declare(strict_types = 1);
|
|
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
use Illuminate\Database\Seeder;
|
|
|
|
/**
|
|
* Class DatabaseSeeder
|
|
*/
|
|
class DatabaseSeeder extends Seeder
|
|
{
|
|
|
|
/**
|
|
* Run the database seeds.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function run()
|
|
{
|
|
Model::unguard();
|
|
|
|
$this->call('AccountTypeSeeder');
|
|
$this->call('TransactionCurrencySeeder');
|
|
$this->call('TransactionTypeSeeder');
|
|
$this->call('PermissionSeeder');
|
|
$this->call('TestDataSeeder');
|
|
}
|
|
|
|
}
|