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.