Jump to content

table structure, is this bad? (simple question)


Yeodan

Recommended Posts

So I'm making an mmorpg browser game.

 

I have a table that stores players and a lot of info about them.

 

Before anyone can login, they have to register, this is done with an activation code, is it bad to store this code in the players table? The code is just used 1 time to activate the account.

 

Or should I just make another table for activation that has the player name and activation code?

Link to comment
Share on other sites

You can create a user_accounts table that has the following:

 

user_accounts

id

name

password

activation_code

last_login

date_registered

gender?

etc.

 

Nothing really on players, but it's for a user account. In the players table, reference the user_accounts table by using the id field.

 

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.