table('weworksingle_group')->setComment('企业微信群'); $table->addColumn('name', 'string', ['limit'=> 255, 'comment'=> '群名', 'default'=> '']) ->addColumn('chat_id', 'string', ['limit'=> 100, 'comment'=> '群id', 'default'=> '']) ->addColumn('owner', 'string', ['limit'=> 200, 'comment'=> '群主', 'default'=> '']) ->addColumn('create_time', 'integer', ['limit'=> 10, 'comment'=> '创群时间', 'default'=> 0]) ->addColumn('notice', 'string', ['limit'=> 255, 'comment'=> '群公告', 'default'=> '']) ->addColumn('member_list', 'text', ['comment'=> '群成员', 'null'=> true]) ->addColumn('admin_list', 'text', ['comment'=> '群管理', 'null'=> true]) ->addColumn('root_id', 'integer', ['limit'=> 10, 'comment'=> '组织id', 'default'=> 0]) ->addColumn('tag_ids', 'string', ['limit'=> 255, 'comment'=> '群标签', 'default'=> '']) ->addColumn('status', 'integer', ['limit'=> 2, 'comment'=> '群状态0正常,1解散', 'default'=> 0]) ->addColumn('dismiss_time', 'integer', ['limit'=> 10, 'comment'=> '解散时间', 'default'=> 0]) ->create(); } }