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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
|
<?php
use Illuminate\Database\Seeder;
class SkilltierSeeder extends Seeder
{
/**
* Run the database seeds.
*
* @return void
*/
public function run()
{
//
DB::table('skill_tier')->insert([
'name' => 'all',
'start'=> -1,
'end'=> 30,
]);
DB::table('skill_tier')->insert([
'name' => 'Unranked',
'start'=> -1,
'end'=> -1,
]);
DB::table('skill_tier')->insert([
'name' => 'Just Beginning',
'start'=> 0,
'end'=> 2,
]);
DB::table('skill_tier')->insert([
'name' => 'Getting There',
'start'=> 3,
'end'=> 5,
]);
DB::table('skill_tier')->insert([
'name' => 'Rock Solid',
'start'=> 6,
'end'=> 8,
]);
DB::table('skill_tier')->insert([
'name' => 'Worthy Foe',
'start'=> 9,
'end'=> 11,
]);
DB::table('skill_tier')->insert([
'name' => 'Got Swagger',
'start'=> 12,
'end'=> 14,
]);
DB::table('skill_tier')->insert([
'name' => 'Credible Threat',
'start'=> 15,
'end'=> 17,
]);
DB::table('skill_tier')->insert([
'name' => 'The Hotness',
'start'=> 18,
'end'=> 20,
]);
DB::table('skill_tier')->insert([
'name' => 'Simply Amazing',
'start'=> 21,
'end'=> 23,
]);
DB::table('skill_tier')->insert([
'name' => 'Pinnacle Of Awesome',
'start'=> 24,
'end'=> 26,
]);
DB::table('skill_tier')->insert([
'name' => 'Vainglorious',
'start'=> 27,
'end'=> 29,
]);
}
}
|