| Total Complexity | 2 |
| Total Lines | 18 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 7 | class m190822_070400_data_article_category extends Migration |
||
| 8 | { |
||
| 9 | private $tableName = '{{%article_category}}'; |
||
| 10 | |||
| 11 | public function safeUp() |
||
| 12 | { |
||
| 13 | $columns = ['id', 'name', 'creator', 'create_time', 'update_time']; |
||
| 14 | $now = time(); |
||
| 15 | $rows = [ |
||
| 16 | [1, 'News', 1, $now, $now], |
||
| 17 | ]; |
||
| 18 | |||
| 19 | $this->batchInsert($this->tableName, $columns, $rows); |
||
| 20 | } |
||
| 21 | |||
| 22 | public function safeDown() |
||
| 25 | } |
||
| 26 | } |
||
| 27 |