Conditions | 1 |
Paths | 1 |
Total Lines | 9 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
14 | public function up() |
||
15 | { |
||
16 | DB::table('language_requirements')->insert([ |
||
17 | ['id' => 4, 'name' => 'english_or_french'], |
||
18 | ]); |
||
19 | |||
20 | DB::table('language_requirement_translations')->insert([ |
||
21 | ['id' => 7, 'language_requirement_id' => 4, 'locale' => 'en', 'value' => 'English or French'], |
||
22 | ['id' => 8, 'language_requirement_id' => 4, 'locale' => 'fr', 'value' => 'Anglais ou Français'], |
||
23 | ]); |
||
37 |