2

Possible Duplicate:
Django: Why create a OneToOne to UserProfile instead of subclassing auth.User?

Why subclassing auth.User is not the recommended way for additional information about Users (auth.User), but creating a UserProfile?

Community
  • 1
  • 1
Kenny Meyer
  • 7,849
  • 6
  • 45
  • 66

1 Answers1

2

I think it's not such a big difference to the recommended django way as subclass of a model will internally also be connected through a OneToOneField to the parent class!

Bernhard Vallant
  • 49,468
  • 20
  • 120
  • 148