1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-24 02:11:34 +02:00
invoiceninja/app/database/seeds/DatabaseSeeder.php
2013-11-28 23:10:01 +02:00

23 lines
364 B
PHP
Executable File

<?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!');
}
}