diff --git a/framework/core/src/Console/SeedCommand.php b/framework/core/src/Console/SeedCommand.php index 97e40ec60..cd97ff959 100644 --- a/framework/core/src/Console/SeedCommand.php +++ b/framework/core/src/Console/SeedCommand.php @@ -40,11 +40,8 @@ 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']); + $this->call('db:seed', ['--class' => 'Flarum\Core\Seeders\DiscussionsTableSeeder']); + $this->call('db:seed', ['--class' => 'Flarum\Core\Seeders\UsersTableSeeder']); } /**