First, in "prefix" table of vBulletin find your desired "prefixid" (it could be an alphabetic name or numerical one). In my case, it's id is "test".
Now run this query in "thread" table:
Code:
UPDATE `thread` SET `prefixid` = 'test' WHERE `forumid` = 1;
Where forumid is the id of your desired forum.
Before running any query, please make a backup of your thread table.