File: /home/imensosw/.trash/database/seeds/ProficiencysTableSeeder.php
<?php
use Illuminate\Database\Seeder;
class ProficiencysTableSeeder extends Seeder
{
/**
* Auto generated seed file
*
* @return void
*/
public function run()
{
\DB::table('proficiencys')->delete();
\DB::table('proficiencys')->insert(array (
0 =>
array (
'id' => 1,
'proficiency' => 'Elementory',
'so' => 0,
),
1 =>
array (
'id' => 2,
'proficiency' => 'Limited',
'so' => 0,
),
2 =>
array (
'id' => 3,
'proficiency' => 'Professional Working',
'so' => 0,
),
3 =>
array (
'id' => 4,
'proficiency' => 'Full Professional',
'so' => 0,
),
4 =>
array (
'id' => 5,
'proficiency' => 'Native/Bilingual',
'so' => 0,
),
));
}
}