| Conditions | 1 |
| Paths | 1 |
| Total Lines | 6 |
| Code Lines | 4 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 22 | public function safeUp() |
||
| 23 | { |
||
| 24 | $this->renameColumn($this->env->pushTableName, 'ttr', 'push_ttr'); |
||
| 25 | $this->renameColumn($this->env->pushTableName, 'delay', 'push_delay'); |
||
| 26 | $this->addColumn($this->env->pushTableName, 'push_trace_data', $this->binary()->after('push_delay')); |
||
| 27 | $this->addColumn($this->env->pushTableName, 'push_env_data', $this->binary()->after('push_trace_data')); |
||
| 28 | } |
||
| 41 |