table('recruit', ['comment' => '招聘管理']) ->addColumn('name', 'string', ['comment'=>'姓名', 'default' => '']) ->addColumn('root_id', 'integer', ['comment'=>'root_id', 'default' => 0]) ->addColumn('employee_qr', 'string', ['comment'=>'员工码', 'default' => '']) ->addColumn('manager_qr', 'string', ['comment'=>'管理员码', 'default' => '']) ->addColumn('addtime', 'timestamp', ['comment'=>'添加时间', 'null' => true,'default' => 'CURRENT_TIMESTAMP']) ->create(); $this->table('employee') ->addColumn('recruit', 'string', ['comment'=>'关联人事姓名', 'default' => '']) ->update(); } }