Make a note of your new userid and use that in the following 2 queries (replace NEW_USERID and USERNAME with the correct values):
[sql]update post set userid = NEW_USERID where username = 'USERNAME';[/sql]
[sql]update thread set postuserid = NEW_USERID where postusername = 'USERNAME';[/sql]
You might need to run update counters and maybe clear your post cache before the change will show.
|