> ) > gender = models.CharField(max_length=1, choices=GENDER_CHOICES) > > Is there a reason to not mirror the actual value stored with the human > readable one? Are you buying much by having a single character rather > than around 20 or 30?
Right..you should see no performance effects either way so you may be better off storing more verbose values in the database. You can always add db_index=True to such a field so that you get it indexed in the DB for added bonus. -Rajesh D --~--~---------~--~----~------------~-------~--~----~ 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 [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/django-users?hl=en -~----------~----~----~----~------~----~------~--~---