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

26 lines
464 B
PHP
Raw Normal View History

2015-03-12 01:44:39 +01:00
<?php
class DatabaseSeeder extends Seeder {
/**
* Run the database seeds.
*
* @return void
*/
public function run()
{
$this->command->info('Running DatabaseSeeder');
Eloquent::unguard();
$this->call('UserTableSeeder');
$this->call('ConstantsSeeder');
$this->call('CountriesSeeder');
$this->command->info('Seeded the countries!');
2015-03-12 01:44:39 +01:00
$this->call('PaymentLibrariesSeeder');
$this->command->info('Seeded the Payment Libraries!');
2015-03-12 01:44:39 +01:00
}
}