mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-11 05:32:39 +01:00
23 lines
392 B
PHP
23 lines
392 B
PHP
<?php
|
|
|
|
class DatabaseSeeder extends Seeder {
|
|
|
|
/**
|
|
* Run the database seeds.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function run()
|
|
{
|
|
$this->command->info('Running DatabaseSeeder');
|
|
|
|
Eloquent::unguard();
|
|
|
|
$this->call('ConstantsSeeder');
|
|
$this->call('CountriesSeeder');
|
|
$this->call('PaymentLibrariesSeeder');
|
|
$this->call('FontsSeeder');
|
|
$this->call('BanksSeeder');
|
|
}
|
|
|
|
} |