blob: cb423b21c9200c340f578dc6fb87de610e0f8854 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
<?php
use Illuminate\Database\Seeder;
class DatabaseSeeder extends Seeder
{
/**
* Run the database seeds.
*
* @return void
*/
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);
}
}
|