Conditions | 1 |
Paths | 1 |
Total Lines | 12 |
Code Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
13 | public function safeUp() |
||
14 | { |
||
15 | $this->addColumn( |
||
16 | '{{%category}}', |
||
17 | 'default', |
||
18 | $this->tinyInteger()->defaultValue(0)->after('status') |
||
19 | ); |
||
20 | |||
21 | $this->addColumn( |
||
22 | '{{%account}}', |
||
23 | 'default', |
||
24 | $this->tinyInteger()->defaultValue(0)->after('credit_card_billing_day') |
||
25 | ); |
||
54 |