Merging one board with another

Sylar

Well-known member
Hey there! So, I have one forum that I would like to merge with another, like so:
snip.png

Is it possible for me to simply merge the two together with the click of a button? Or would I have to manually move all the topics...?
 
You can move all the threads using this query:
Code:
UPDATE xf_thread
SET node_id = y
WHERE node_id = x

Where x is the current node ID and y is the new node ID.
 
Problem: I merged the forums, but it took off my post count for that forum, and even though they successfully merged, the forum post total and that board's post total won't re-count....problem?
 
Top Bottom