X-Git-Url: http://git.ithinksw.org/philo.git/blobdiff_plain/2380185d894e5a62a20b91a0c5a3a48497fb3cfb..92691d27d00f2c9a1b0536020ca2a5c1ec07f3e3:/models/base.py?ds=inline 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):