There is a 'hidden' option in miniBB called $customProfileList. It is set under setup_options.php and defines the order of profile fields to display.
Example:
$customProfileList=array('username', 'user_regdate', 'user_email', 'num_topics', 'num_posts', 'user_from', 'user_icq', 'user_website', 'user_occ', 'user_interest', 'activity');
If you see the logics, it puts database field names in the proper order, and all values of these fields will be displayed on user's profile page that way. You may put 'user_icq' in the place you like.