table('agent_emp_invitation_qrcode', ['comment' => '员工邀请经纪人二维码表', 'engine'=>'InnoDB']); $table->addColumn('employee_id', 'integer',array('limit' => 11, 'comment'=>'员工id')) ->addColumn('addtime', 'timestamp',array('comment'=>'添加时间','default'=> 'CURRENT_TIMESTAMP')) ->addColumn('root_id', 'integer', array('comment'=>'二维码所属企业','default'=>0)) ->addColumn('type', 'integer',array('comment'=>'所属经纪人类别id','default' => 0)) ->addColumn('invitation_qrcode', 'string',array('comment'=>'二维码地址','null' => true)) ->create(); } }