| Conditions | 1 |
| Paths | 1 |
| Total Lines | 9 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php |
||
| 13 | public function safeUp() |
||
| 14 | { |
||
| 15 | $this->addColumn('account', 'followed_by', $this->integer()); |
||
| 16 | $this->addColumn('account', 'follows', $this->integer()); |
||
| 17 | $this->addColumn('account', 'media', $this->integer()); |
||
| 18 | $this->addColumn('account', 'er', $this->money()); |
||
| 19 | $this->addColumn('account', 'avg_likes', $this->money()); |
||
| 20 | $this->addColumn('account', 'avg_comments', $this->money()); |
||
| 21 | $this->addColumn('account', 'stats_updated_at', $this->dateTime()); |
||
| 22 | } |
||
| 38 |