Conditions | 1 |
Paths | 1 |
Total Lines | 10 |
Code Lines | 7 |
Lines | 10 |
Ratio | 100 % |
Changes | 0 |
1 | <?php |
||
13 | View Code Duplication | public function change() |
|
14 | { |
||
15 | $table = $this->table('incidents'); |
||
16 | $table->changeColumn('error_message', 'string', [ |
||
17 | 'default' => null, |
||
18 | 'limit' => 200, |
||
19 | 'null' => true, |
||
20 | ]); |
||
21 | $table->update(); |
||
22 | } |
||
23 | } |
||
24 |