diff options
| author | schneefux <schneefux+commit@schneefux.xyz> | 2018-02-03 16:56:09 +0100 |
|---|---|---|
| committer | schneefux <schneefux+commit@schneefux.xyz> | 2018-02-03 16:56:09 +0100 |
| commit | fdecc133d6266f50de9f2ec25e1864335880cbd9 (patch) | |
| tree | 8084da07818c2149c06bc4f8bebcd78e7b098e46 /seeds/DatabaseSeeder.php | |
| parent | ab94447fc34aeddceabcd82050224b03661938d8 (diff) | |
| download | migrations-fdecc133d6266f50de9f2ec25e1864335880cbd9.tar.gz migrations-fdecc133d6266f50de9f2ec25e1864335880cbd9.zip | |
import seeds from vainsocial
Diffstat (limited to 'seeds/DatabaseSeeder.php')
| -rw-r--r-- | seeds/DatabaseSeeder.php | 17 |
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); } } |
