summaryrefslogtreecommitdiff
path: root/seeds/DatabaseSeeder.php
diff options
context:
space:
mode:
authorschneefux <schneefux+commit@schneefux.xyz>2018-02-03 16:56:09 +0100
committerschneefux <schneefux+commit@schneefux.xyz>2018-02-03 16:56:09 +0100
commitfdecc133d6266f50de9f2ec25e1864335880cbd9 (patch)
tree8084da07818c2149c06bc4f8bebcd78e7b098e46 /seeds/DatabaseSeeder.php
parentab94447fc34aeddceabcd82050224b03661938d8 (diff)
downloadmigrations-fdecc133d6266f50de9f2ec25e1864335880cbd9.tar.gz
migrations-fdecc133d6266f50de9f2ec25e1864335880cbd9.zip
import seeds from vainsocial
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);
}
}