vote up 4 vote down star
3

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?

flag

50% accept rate

1 Answer

vote up 11 vote down check

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|flag
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

Your Answer

Get an OpenID
or

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