1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-21 17:01:33 +02:00
invoiceninja/database/seeds/DatabaseSeeder.php

39 lines
920 B
PHP
Raw Normal View History

2018-10-04 19:10:43 +02:00
<?php
use App\Models\Timezone;
2018-10-04 19:10:43 +02:00
use Illuminate\Database\Seeder;
class DatabaseSeeder extends Seeder
{
/**
* Run the database seeds.
2018-10-04 19:10:43 +02:00
*
* @return void
*/
public function run()
{
$this->command->info('Running DatabaseSeeder');
if (Timezone::count()) {
$this->command->info('Skipping: already run');
return;
}
Eloquent::unguard();
$this->call('ConstantsSeeder');
$this->call('PaymentLibrariesSeeder');
$this->call('BanksSeeder');
$this->call('CurrenciesSeeder');
$this->call('LanguageSeeder');
$this->call('CountriesSeeder');
$this->call('IndustrySeeder');
//$this->call('PaymentTermsSeeder');
$this->call('PaymentTypesSeeder');
$this->call('GatewayTypesSeeder');
2019-09-22 11:30:03 +02:00
$this->call('DateFormatsSeeder');
$this->call('DesignSeeder');
2018-10-04 19:10:43 +02:00
}
}