On Mon, Jun 22, 2009 at 4:01 PM, pr<crico...@gmail.com> wrote: > Is it a good way to extend Django User model using add_to_class()? > I have to add only two extra fields to the User model and I think that > using Profile Model to do this is unnecessary.
No, it's a very bad method. Consider what happens if two people want to add fields of the same name; trying to stick them in the User model will obviously fail and break at least one person's code. Using the standard method of a related profile model keeps them neatly namespaced. As a general rule, consider code in other people's applications (including applications in django.contrib) to be read-only. -- "Bureaucrat Conrad, you are technically correct -- the best kind of correct." --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com To unsubscribe from this group, send email to django-users+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/django-users?hl=en -~----------~----~----~----~------~----~------~--~---