table('lottery_activity_goods', ['comment' => '大转盘奖品表', 'engine'=>'InnoDB']); $table->addColumn('good_name', 'string',array('limit' => 255,'comment'=>'商品名称')) ->addColumn('good_img', 'string',array('limit' => 255,'comment'=>'商品图片','null' => true)) ->addColumn('probability', 'integer',array('comment'=>'奖品中奖概率','null' => true)) ->addColumn('stock', 'integer', array('null' => true, 'comment'=>'奖品库存')) ->addColumn('actid', 'integer', array('null' => true, 'comment'=>'关联活动表id')) ->create(); } }