summaryrefslogtreecommitdiff
path: root/seeds/KeysTableSeeder.php
blob: feec53d3d1631784f6ddb65d39db327dda919459 (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 KeysTableSeeder extends Seeder
{
    /**
     * Run the database seeds.
     *
     * @return void
     */
    public function run()
    {
        // Configs
        DB::table('keys')->insert([
            'type' => 'config',
            'key' => 'page_size',
            'value' => '10'
        ]);

        DB::table('keys')->insert([
            'type' => 'config',
            'key' => 'hp_fans',
            'value' => '3'
        ]);
    }
}