table('lottery_lucky_user', ['comment' => '大转盘中奖用户表', 'engine'=>'InnoDB']); $table->addColumn('uid', 'integer',array('comment'=>'用户id')) ->addColumn('good_id', 'integer',array('comment'=>'中奖商品id','null' => true)) ->addColumn('lucky_time', 'timestamp',array('comment'=>'中奖时间','default'=> 'CURRENT_TIMESTAMP')) ->addColumn('actid', 'integer', array('null' => true, 'comment'=>'关联活动表id')) ->addColumn('wiped_sn', 'string', array('limit' => 10,'null' => true, 'comment'=>'核销码')) ->create(); } }