mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-12-18 20:38:57 +00:00
18 lines
198 B
PHP
18 lines
198 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
class DatabaseSeeder extends Seeder {
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Run the database seeds.
|
||
|
|
*
|
||
|
|
* @return void
|
||
|
|
*/
|
||
|
|
public function run()
|
||
|
|
{
|
||
|
|
Eloquent::unguard();
|
||
|
|
|
||
|
|
// $this->call('UserTableSeeder');
|
||
|
|
}
|
||
|
|
|
||
|
|
}
|