Passed
Push — master ( 9f850d...5c55bf )
by Paweł
03:12
created

m181006_155930_chg_account_stats_table::safeUp()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 1
Metric Value
cc 1
eloc 2
nc 1
nop 0
dl 0
loc 4
rs 10
c 1
b 0
f 1
1
<?php
2
3
use yii\db\Migration;
4
5
/**
6
 * Class m181006_155930_chg_account_stats_table
7
 */
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()
23
    {
24
        $this->dropColumn('account_stats', 'avg_likes');
25
        $this->dropColumn('account_stats', 'avg_comments');
26
    }
27
}
28