xasharma The ID in the URL corresponds to the discussion's ID in the database. Attempting to modify this ID will trigger a foreign key constraint due to its reference in other tables such as discussion_user
and posts
. While it is possible to temporarily disable foreign key constraints to make this change, it would be ill-advised. Other extensions might have similar references, and forgetting to change the IDs of associated records could lead to complications, such as your forum experiencing gastrointestinal issues for a bit 🙂
Instead of pursuing this approach, you could consider transferring or splitting posts into a new discussion. For this purpose, you might find FoF Split useful. Alternatively, if you wish to merge discussions, FoF Merge offers a solution worth exploring as well.
luceos I'm just as curious as you are 👀