mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-10 05:02:36 +01:00
24 lines
549 B
PHP
24 lines
549 B
PHP
<?php
|
|
|
|
class UpdateSeeder extends Seeder
|
|
{
|
|
/**
|
|
* Run the database seeds.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function run()
|
|
{
|
|
$this->command->info('Running UpdateSeeder...');
|
|
|
|
$this->call('PaymentLibrariesSeeder');
|
|
$this->call('FontsSeeder');
|
|
$this->call('BanksSeeder');
|
|
$this->call('InvoiceStatusSeeder');
|
|
$this->call('CurrenciesSeeder');
|
|
$this->call('DateFormatsSeeder');
|
|
$this->call('InvoiceDesignsSeeder');
|
|
$this->call('PaymentTermsSeeder');
|
|
}
|
|
}
|