Re: Sequence of Meta.unique_together apparently matters

2006-07-28 Thread [EMAIL PROTECTED]
It might be something to do with this: http://code.djangoproject.com/ticket/2019 Chris --~--~-~--~~~---~--~~ 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@google

Sequence of Meta.unique_together apparently matters

2006-07-28 Thread bsdlogical
Hello. I noticed a weird problem with the order of parameters specified in unique_together for a Meta class inside another class. I have the following definitions: class Obligation(models.Model): organization = models.ForeignKey(Organization) name = models.CharField(maxlength=80) cla