| Conditions | 1 |
| Paths | 1 |
| Total Lines | 8 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 14 | public function up() |
||
| 15 | { |
||
| 16 | DB::table( 'review_statuses')->where('name', 'not_reviewed')->update(['name' => 'screened_out']); |
||
| 17 | DB::table( 'review_statuses')->where('name', 'partially_reviewed')->update(['name' => 'still_thinking']); |
||
| 18 | DB::table( 'review_statuses')->where('name', 'reviewed')->update(['name' => 'still_in']); |
||
| 19 | |||
| 20 | DB::table('review_statuses')->insert([ |
||
| 21 | ['id' => 4, 'name' => 'not_reviewed'], |
||
| 22 | ]); |
||
| 39 |