table('tool') ->addColumn('user_id', 'integer', ['limit'=> 11,'comment' => '用户id']) ->addColumn('share_uid', 'integer', ['limit'=> 11, 'comment'=>'工具分享人' ,'default' => 0]) ->addColumn('tool_type', 'string', ['limit'=> 255, 'comment'=>'信息类型', 'default' => '']) ->addColumn('addtime', 'timestamp', ['comment'=>'添加时间', 'default' => 'CURRENT_TIMESTAMP']) ->addColumn('value', 'text', ['comment'=>'工具信息储存']) ->create(); } }