modifyUserTable(); } public function down() { $this->table('kg_user') ->removeColumn('comment_count') ->save(); } protected function modifyUserTable() { $this->table('kg_user') ->addColumn('comment_count', 'integer', [ 'null' => false, 'default' => '0', 'limit' => MysqlAdapter::INT_REGULAR, 'signed' => false, 'comment' => '评论数量', 'after' => 'answer_count', ])->save(); } }