%PDF- %PDF-
Direktori : /mnt/tnb2/git/loslex/database/seeders/ |
Current File : //mnt/tnb2/git/loslex/database/seeders/ContestSeeder.php |
<?php namespace Database\Seeders; use App\Enums\ContestCategoryEnum; use App\Enums\ContestLevelEnum; use Illuminate\Database\Console\Seeds\WithoutModelEvents; use Illuminate\Database\Seeder; use Illuminate\Support\Facades\DB; use Illuminate\Support\Str; class ContestSeeder extends Seeder { /** * Run the database seeds. */ public function run(): void { DB::table('contests')->insert([ 'created_at' => date('Y-m-d H:i:s'), 'psmatchguid' => Str::orderedUuid(), 'published' => 1, 'contestname' => 'Klubovka Opařany', 'range_id' => 10, 'organizer_group_id' => 2, 'date' => '2023-08-01', 'contest_category_id' => 1, 'contest_level_id' => 3, 'director_id' => 1, 'rangemaster_id' => 2, 'registration_type' => 1, 'registration_start' => '2023-07-01 18:00:00', 'registration_end' => '2023-07-31 23:59:00', 'instructions' => 'Propozice k závodu nejsou povinné, ale hodí se je mít... \nI kdyby byly třeba jenom na tři řádky\nNebo čtyři.\nSkoro.', 'settings' => '{"presentation_start":["08:00"],"presentation_end":["08:50"],"contest_start":["09:00"],"contest_end":["16:00"],"stages":"4","squads":"4","capacity":"20","feebasic":"500","feelex":"300","calibrationwpn":"CZ 75 SP-01 Shadow, 9mm Luger","secretstages":"1","flashlight":"2","restrictions":0,"squadshootstyle":"together"}', ]); DB::table('contests')->insert([ 'created_at' => date('Y-m-d H:i:s'), 'psmatchguid' => Str::orderedUuid(), 'published' => 1, 'contestname' => 'LOSík Brno', 'range_id' => 5, 'organizer_group_id' => 2, 'date' => '2023-08-15', 'contest_category_id' => 1, 'contest_level_id' => 4, 'director_id' => 1, 'rangemaster_id' => 2, 'registration_type' => 1, 'registration_start' => '2023-07-15 18:00:00', 'registration_end' => '2023-08-14 23:59:00', 'instructions' => 'LOSík na střelnici, jako obvykle\nStřílí se podle squadů!', 'settings' => '{"presentation_start":[null,"16:45","17:45","18:45"],"presentation_end":[null,"17:00","18:00","19:00"],"contest_start":[null,"17:00","18:00","19:00"],"contest_end":[null,"18:00","19:00","20:00"],"stages":"3","squads":"3","capacity":"13","feebasic":"350","feelex":"300","calibrationwpn":"CZ 75 SP-01 Shadow, 9mm Luger","secretstages":"0","flashlight":"0","restrictions":"on","restrictionstext":"Cylindr. S kr\\u00e1l\\u00edkama.","squadshootstyle":"manual"}', ]); DB::table('contests')->insert([ 'created_at' => date('Y-m-d H:i:s'), 'psmatchguid' => Str::orderedUuid(), 'published' => 0, 'contestname' => 'Polo-letní pohárovka AKIM', 'range_id' => 1, 'organizer_group_id' => 1, 'date' => '2023-07-12', 'contest_category_id' => 1, 'contest_level_id' => 2, 'director_id' => 3, 'rangemaster_id' => 4, 'registration_type' => 1, 'registration_start' => '2023-06-11 18:00:00', 'registration_end' => '2023-07-10 23:59:00', 'instructions' => 'Pohárový závod. Všichní ví, všichni znají.', 'settings' => '{"presentation_start":["08:00"],"presentation_end":["08:50"],"contest_start":["09:00"],"contest_end":["17:00"],"stages":"8","squads":"8","capacity":"80","feebasic":"1500","feelex":"1000","calibrationwpn":"CZ P10C, 9mm Luger","secretstages":"1","flashlight":"1","restrictions":0,"squadshootstyle":"together"}', ]); } }