Conditions | 1 |
Paths | 1 |
Total Lines | 5 |
Code Lines | 3 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
13 | public function safeUp() |
||
14 | { |
||
15 | $this->addColumn('{{rule}}', 'sort', $this->tinyInteger()->defaultValue(99)->after('status')); |
||
16 | $this->addColumn('{{account}}', 'sort', $this->tinyInteger()->defaultValue(99)->after('default')); |
||
17 | $this->addColumn('{{category}}', 'sort', $this->tinyInteger()->defaultValue(99)->after('default')); |
||
18 | } |
||
48 |