Re: Easy database modeling question

2010-01-21 Thread Waqqas Jabbar
If you want to add a profile for each user, check out http://scottbarnham.com/blog/2008/08/21/extending-the-django-user-model-with-inheritance/ the key in django is reusing existing "applications" maybe this might help http://code.google.com/p/django-messages/ On Thu, Jan 21, 2010 at 6:16 AM,

Easy database modeling question

2010-01-20 Thread Chris
This is my first Django experience and I'm having trouble figuring out the right answer to the right relationship to have. (brain fart maybe.. ) I have a site that users have profiles and can message each other. So my model looks like: class User(models.Model): username =