XF 1.4 SQL Query like_count

Nebulous

Well-known member
So in xf_user it shows the like_count for each user.

Does anyone know of an SQL query I can run to change a specific user's like_count to a different number?
 
Okay I think I got one figured out:

Code:
UPDATE  `xf_user` SET  `like_count` =  '659' WHERE  `user_id` =34
(an example of updating member #34 to have 659 likes)

.... Did I do that right?
 
Top Bottom