summaryrefslogtreecommitdiff
path: root/seeds/GamerSeeder.php
blob: 9cff0bc356c4c6a4b815e05a988be1cf555aa1e4 (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
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
<?php

use Illuminate\Database\Seeder;

class GamerSeeder extends Seeder
{
    /**
     * Run the database seeds.
     *
     * @return void
     */
    public function run()
    {
        //
        DB::table('gamer')->insert([
            'player_api_id' => '44693bc0-9f02-11e5-ad28-06eb725f8a76',
            'name' => 'StormCallerSr',
            'vainsocial_status' => 'developer',
            'vainglory_ign' => 'StormCallerSr',
            'vainglory_shard_id' => 'sg',
            'vainglory_is_pro' => false,
        ]);

        DB::table('gamer')->insert([
            'player_api_id' => '8f454688-2fe5-11e6-9433-06d90c28bf1a',
            'name' => 'shutterfly',
            'vainsocial_status' => 'developer',
            'vainglory_ign' => 'shutterfly',
            'vainglory_shard_id' => 'eu',
            'vainglory_is_pro' => false,
        ]);

        DB::table('gamer')->insert([
            'player_api_id' => 'c865b42e-5b01-11e6-91aa-06fc87f1dd11',
            'name' => 'HellsByte',
            'vainsocial_status' => 'supporter',
            'vainglory_ign' => 'HellsByte',
            'vainglory_shard_id' => 'eu',
            'vainglory_is_pro' => false,
        ]);

        DB::table('gamer')->insert([
            'player_api_id' => '1314f3f8-c53b-11e4-946e-06eb725f8a76',
            'name' => 'idmonfish',
            'vainsocial_status' => 'supporter',
            'vainglory_ign' => 'idmonfish',
            'vainglory_shard_id' => 'sg',
            'vainglory_is_pro' => false,
        ]);

        DB::table('gamer')->insert([
            'player_api_id' => '844b66aa-d359-11e6-b4c3-06ab1a16f8e5',
            'name' => 'kamaelxiii',
            'vainsocial_status' => 'supporter',
            'vainglory_ign' => 'kamaelxiii',
            'vainglory_shard_id' => 'sg',
            'vainglory_is_pro' => false,
        ]);

    }
}