Passed
Push — master ( b2168e...f1daef )
by Paweł
03:26
created

m190513_154106_drop_auto_monitoring   A

Complexity

Total Complexity 2

Size/Duplication

Total Lines 18
Duplicated Lines 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
eloc 5
dl 0
loc 18
rs 10
c 1
b 0
f 0
wmc 2

2 Methods

Rating   Name   Duplication   Size   Complexity  
A safeDown() 0 4 1
A safeUp() 0 4 1
1
<?php
2
3
use yii\db\Migration;
4
5
/**
6
 * Class m190513_154106_drop_auto_monitoring
7
 */
8
class m190513_154106_drop_auto_monitoring extends Migration
9
{
10
    /**
11
     * {@inheritdoc}
12
     */
13
    public function safeUp()
14
    {
15
        $this->dropColumn('account', 'accounts_monitoring_level');
16
        $this->dropColumn('account', 'accounts_default_tags');
17
    }
18
19
    /**
20
     * {@inheritdoc}
21
     */
22
    public function safeDown()
23
    {
24
        $this->addColumn('account', 'accounts_monitoring_level', $this->integer());
25
        $this->addColumn('account', 'accounts_default_tags', $this->string());
26
    }
27
}
28