35 lines
912 B
PHP
35 lines
912 B
PHP
<?php
|
|
|
|
namespace Database\Seeders;
|
|
|
|
use Illuminate\Database\Console\Seeds\WithoutModelEvents;
|
|
use Illuminate\Database\Seeder;
|
|
use Illuminate\Support\Facades\DB;
|
|
|
|
class ExaminationTypeSeeder extends Seeder
|
|
{
|
|
public function run(): void
|
|
{
|
|
DB::table('examination_types')->insert([
|
|
[
|
|
'name' => 'ЕГЭ',
|
|
'description' => 'Unified State Examination',
|
|
'position' => '1',
|
|
'slug' => 'USE',
|
|
],
|
|
[
|
|
'name' => 'СПО',
|
|
'description' => 'secondary vocational education',
|
|
'position' => '2',
|
|
'slug' => 'SVE',
|
|
],
|
|
[
|
|
'name' => 'магитсратура',
|
|
'description' => 'type magistracy',
|
|
'position' => '3',
|
|
'slug' => 'MAG',
|
|
],
|
|
]);
|
|
}
|
|
}
|