From: Stephen Burrows Date: Thu, 5 Aug 2010 18:06:23 +0000 (-0400) Subject: Added unique_together constraint to Attributes and Relationships. X-Git-Tag: philo-0.9~43^2 X-Git-Url: http://git.ithinksw.org/philo.git/commitdiff_plain/92691d27d00f2c9a1b0536020ca2a5c1ec07f3e3 Added unique_together constraint to Attributes and Relationships. --- diff --git a/models/base.py b/models/base.py index 6f23191..87914be 100644 --- a/models/base.py +++ b/models/base.py @@ -52,6 +52,7 @@ class Attribute(models.Model): class Meta: app_label = 'philo' + unique_together = ('key', 'entity_content_type', 'entity_object_id') value_content_type_limiter = ContentTypeRegistryLimiter() @@ -80,6 +81,7 @@ class Relationship(models.Model): class Meta: app_label = 'philo' + unique_together = ('key', 'entity_content_type', 'entity_object_id') class QuerySetMapper(object, DictMixin):