Is there a way to specify a Model in Django such that is ensures that pair of fields in unique in the table, in a way similar to the "unique=True" attribute for similar field?

Or do I need to check this constraint in the clean() method?

link|improve this question

47% accept rate
feedback

1 Answer

up vote 12 down vote accepted

There is a META option called unique_together. For example:

class MyModel(models.Model):
    field1 = models.BlahField()
    field2 = models.FooField()
    field3 = models.BazField()

    class Meta:
        unique_together = ("field1", "field2")

More info on the Django documentation page.

link|improve this answer
META should not be in all caps; it should be "class Meta:" – Carl Meyer Jan 23 '09 at 17:13
Carl: Thanks for the tip. That was a typo. – Baishampayan Ghose Jan 23 '09 at 21:04
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.