mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-11 21:52:35 +01:00
26 lines
483 B
PHP
26 lines
483 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->command->info('Seeded the constants');
|
|
|
|
$this->call('CountriesSeeder');
|
|
$this->command->info('Seeded the countries');
|
|
|
|
$this->call('PaymentLibrariesSeeder');
|
|
$this->command->info('Seeded the Payment Libraries');
|
|
}
|
|
|
|
} |