summaryrefslogtreecommitdiff
path: root/seeds/DatabaseSeeder.php
diff options
context:
space:
mode:
Diffstat (limited to 'seeds/DatabaseSeeder.php')
-rw-r--r--seeds/DatabaseSeeder.php17
1 files changed, 5 insertions, 12 deletions
diff --git a/seeds/DatabaseSeeder.php b/seeds/DatabaseSeeder.php
index cb423b2..4530bdb 100644
--- a/seeds/DatabaseSeeder.php
+++ b/seeds/DatabaseSeeder.php
@@ -11,17 +11,10 @@ class DatabaseSeeder extends Seeder
*/
public function run()
{
- // $this->call(BuildSeeder::class);
- // $this->call(KeysTableSeeder::class);
- // $this->call(GameModeSeeder::class);
- // $this->call(SeriesSeeder::class);
- // $this->call(RoleSeeder::class);
- // $this->call(RegionSeeder::class);
- // $this->call(GamerSeeder::class);
- // $this->call(ItemsSeeder::class);
- // $this->call(HeroesSeeder::class);
- // $this->call(FilterSeeder::class);
- // $this->call(SkilltierSeeder::class);
-
+ $this->call(KeysTableSeeder::class);
+ $this->call(RoleSeeder::class);
+ $this->call(RegionSeeder::class);
+ $this->call(FilterSeeder::class);
+ $this->call(SkilltierSeeder::class);
}
}