| Total Complexity | 2 |
| Total Lines | 18 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php |
||
| 8 | class m181006_155930_chg_account_stats_table extends Migration |
||
| 9 | { |
||
| 10 | /** |
||
| 11 | * {@inheritdoc} |
||
| 12 | */ |
||
| 13 | public function safeUp() |
||
| 14 | { |
||
| 15 | $this->addColumn('account_stats', 'avg_likes', $this->money()); |
||
| 16 | $this->addColumn('account_stats', 'avg_comments', $this->money()); |
||
| 17 | } |
||
| 18 | |||
| 19 | /** |
||
| 20 | * {@inheritdoc} |
||
| 21 | */ |
||
| 22 | public function safeDown() |
||
| 26 | } |
||
| 27 | } |
||
| 28 |