I'm going to migrate a phpBB 3.0.7 site with 4700 users to Drupal 7.0.
I won't be copying their avatars and passwords - but will ask the users to reset their passwords (through the "Request new password" form) and upload the new avatars instead. Also I won't be copying any forum posts, because my new Drupal site will be without the forum.
But I must keep the same numeric ids for the users, because there are additional tables with data bound to those ids.
My question is: will it suffice to copy the following 4 fields:
phpbb_users table: drupal_users table:
user_id -> uid
username -> name
user_email -> mail
user_regdate -> created
or do I have to set any additional data/tables in Drupal?
For example is there anywhere a number of users stored in some other table in Drupal? I'm afraid to bring Drupal data out of sync.
Thank you! Alex