I am creating a Django application in which users can have multiple emails including a primary one. In Django, the SQL user table has a single CharField to store a single email address.

My current plan is to create a new model called say "EmailAddress" and then link this model to the User model via a foreign key, thus allowing for multiple emails. The primary email address of a user is stored in the email column of the user table.

However, I was wondering if there was a more efficient and reliable way to do this. I am currently storing the primary email address twice, which I feel could compromise data integrity.

Thank you.

link|improve this question

feedback

2 Answers

up vote 1 down vote accepted

Your plan sounds completely reasonable. In most scenarios, I would agree with @Hoff's answer, however, adding repeating fields as he suggests is just flat-out the wrong approach. Since the foreign key will be on EmailAddress, you could get by without creating a custom profile in this scenario, though for pretty much every other scenario a custom profile would be the way to go.

link|improve this answer
feedback

you should consider making a custom user profile model:

https://docs.djangoproject.com/en/dev/topics/auth/#storing-additional-information-about-users

e.g.

class UserProfile(models.Model):  
    user = models.OneToOneField(User) 
    email_2 = models.CharField()
    email_3 = models.CharField()
    # etc

this is well supported in django, you simply specify which model is your extension of User, in settings.py:

AUTH_PROFILE_MODULE = 'YOURAPP.UserProfile'

user.get_profile() 

then gives you access to your extended User model

link|improve this answer
Thanks! I feel that using a user profile would limit the number of emails to the number of email_[n] table columns though. – David Faux Jan 3 at 21:33
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.