table('lottery_user', ['comment' => '大转盘用户表', 'engine'=>'InnoDB']); $table->addColumn('uid', 'integer',array('comment'=>'用户id')) ->addColumn('empid', 'integer',array('comment'=>'上级员工id','null' => true)) ->addColumn('addtime', 'timestamp',array('comment'=>'添加时间','default'=> 'CURRENT_TIMESTAMP')) ->addColumn('lottery_num', 'integer', array('null' => true, 'comment'=>'大转盘抽奖次数')) ->addColumn('actid', 'integer', array('null' => true, 'comment'=>'关联活动表id')) ->addColumn('share_img', 'string', array('limit' => 255,'null' => true, 'comment'=>'转发获取抽奖次数图片')) ->create(); } }