1
0
mirror of https://github.com/flarum/core.git synced 2025-07-25 02:31:17 +02:00

Extract config into database

This commit is contained in:
Toby Zerner
2015-05-02 08:07:51 +09:30
parent 42c820e0eb
commit 4c42be1362
4 changed files with 18 additions and 8 deletions

View File

@@ -40,8 +40,11 @@ class SeedCommand extends Command {
*/
public function fire()
{
$this->call('db:seed', ['--class' => 'Flarum\Core\Seeders\GroupsTableSeeder']);
$this->call('db:seed', ['--class' => 'Flarum\Core\Seeders\PermissionsTableSeeder']);
$this->call('db:seed', ['--class' => 'Flarum\Core\Seeders\UsersTableSeeder']);
$this->call('db:seed', ['--class' => 'Flarum\Core\Seeders\DiscussionsTableSeeder']);
$this->call('db:seed', ['--class' => 'Flarum\Core\Seeders\ConfigTableSeeder']);
}
/**