for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
use Illuminate\Database\Seeder;
class ConfigIssueEffortsTableSeeder extends Seeder
{
/**
* Auto generated seed file.
*/
public function run()
\DB::table('config_issue_efforts')->delete();
\DB::table('config_issue_efforts')->insert(array(
0 => array(
'id' => 1,
'title' => '0',
'effort' => '0.00',
'position' => 0,
'enabled' => 1,
),
1 => array(
'id' => 2,
'title' => '1',
'effort' => '1.00',
'position' => 2,
2 => array(
'id' => 3,
'title' => '2',
'effort' => '2.00',
'position' => 3,
3 => array(
'id' => 4,
'title' => '3',
'effort' => '3.00',
'position' => 4,
4 => array(
'id' => 5,
'title' => '5',
'effort' => '5.00',
'position' => 5,
5 => array(
'id' => 6,
'title' => '8',
'effort' => '8.00',
'position' => 6,
6 => array(
'id' => 7,
'title' => '13',
'effort' => '13.00',
'position' => 7,
7 => array(
'id' => 8,
'title' => '21',
'effort' => '21.00',
'position' => 8,
8 => array(
'id' => 9,
'title' => '34',
'effort' => '34.00',
'position' => 9,
9 => array(
'id' => 10,
'title' => '55',
'effort' => '55.00',
'position' => 10,
10 => array(
'id' => 11,
'title' => '89',
'effort' => '89.00',
'position' => 11,
11 => array(
'id' => 12,
'title' => '1/2',
'effort' => '0.50',
'position' => 1,
));
}