Re: Extending Django User model using add_to_class()

2009-06-22 Thread James Bennett
On Mon, Jun 22, 2009 at 5:30 PM, pr wrote: > Yes, I know what you mean, but It's small project with one programmer. > I want to know about speed and stability in production mode above > rules of 'programming-tao' :-) Well, there's also the fact that: 1. Using a profile means relying on documente

Re: Extending Django User model using add_to_class()

2009-06-22 Thread pr
On 22 Cze, 23:14, James Bennett wrote: > 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. Yes, I know what you mean, but It's small project with

Re: Extending Django User model using add_to_class()

2009-06-22 Thread James Bennett
On Mon, Jun 22, 2009 at 4:01 PM, pr 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

Extending Django User model using add_to_class()

2009-06-22 Thread pr
Hi, 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. My way: # Accounts models.py User.add_to_class('field1', models.CharField(max_length=255)) User.add_to_cla