Merging nodes?

Is there a way to merge nodes? Or do I need to do in manually in the database?

Had a topic come up that was cluttering our main forum, so we created a sub-forum for it. It's now run it's course and we'd like to merge it back into the main forum.

Just want to make sure I wasn't missing anything. Or a way to move all threads in a node to another.
 
One way is to select all thread using inline mod and move them to the other forum.

Or use an SQL query:
UPDATE xf_thread
SET node_id = x
WHERE node_id = y

Where x is the new node ID and y is the current node ID.
 
Top Bottom