for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
use Illuminate\Database\Seeder;
class ConfigStatusesTableSeeder extends Seeder
{
/**
* Auto generated seed file.
*/
public function run()
\DB::table('config_statuses')->delete();
\DB::table('config_statuses')->insert(array(
0 => array(
'id' => 1,
'slug' => 'todo',
'type' => 'issue',
'title' => 'Todo',
'position' => 1,
'color' => 'daa724',
'is_closed' => null,
'default' => 1,
),
1 => array(
'id' => 2,
'slug' => 'in-progress',
'title' => 'In Progress',
'position' => 2,
'color' => '079a0d',
'default' => null,
2 => array(
'id' => 3,
'slug' => 'done',
'title' => 'Done',
'position' => 3,
'color' => '3745be',
'is_closed' => 1,
3 => array(
'id' => 4,
'slug' => 'archived',
'title' => 'Arquived',
'position' => 4,
'color' => '8c023f',
4 => array(
'id' => 5,
'slug' => 'updated',
'type' => 'note',
'title' => 'Updated',
'position' => 0,
'color' => 'f0f0f0',
5 => array(
'id' => 6,
'slug' => 'open',
'type' => 'sprint',
'title' => 'Open',
6 => array(
'id' => 7,
'slug' => 'closed',
'title' => 'Closed',
7 => array(
'id' => 8,
'slug' => 'standby',
'title' => 'Standby',
8 => array(
'slug' => 'attachment-added',
'type' => 'attachment',
'title' => 'Added',
'color' => '6272a4',
));
}