| Conditions | 1 |
| Paths | 1 |
| Total Lines | 10 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 17 | */ |
||
| 18 | public function renameColumn($from, $to) |
||
| 19 | { |
||
| 20 | $parameters = []; |
||
| 21 | $parameters['handler'] = 'aql'; |
||
| 22 | $parameters['explanation'] = "Rename the column '$from' to '$to'."; |
||
| 23 | $parameters['from'] = $from; |
||
| 24 | $parameters['to'] = $to; |
||
| 25 | |||
| 26 | return $this->addCommand('renameAttribute', $parameters); |
||
|
|
|||
| 27 | } |
||
| 47 |