Conditions | 1 |
Paths | 1 |
Total Lines | 9 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
27 | public function safeDown() |
||
28 | { |
||
29 | $this->dropColumn('account', 'followed_by'); |
||
30 | $this->dropColumn('account', 'follows'); |
||
31 | $this->dropColumn('account', 'media'); |
||
32 | $this->dropColumn('account', 'er'); |
||
33 | $this->dropColumn('account', 'avg_likes'); |
||
34 | $this->dropColumn('account', 'avg_comments'); |
||
35 | $this->dropColumn('account', 'stats_updated_at'); |
||
36 | } |
||
38 |