2012年4月14日星期六

Discuz X2 : 用户重命名

假设discuz的旧用户名为 xxx,要改成新用户名 yyy。相关执行的SQL语句如下:
UC用户表: update pre_ucenter_members set username='yyy' where username='xxx';
论坛用户表:update pre_common_member set username='yyy' where username='xxx';
帖子列表:update pre_forum_thread set author='yyy' where author='xxx';
帖子内容表:update pre_forum_post set author='yyy' where author='xxx';
帖子内容(慎用):update pre_forum_post set message=replace(message,'xxx','yyy') where message like '%xxx%';

没有评论:

发表评论