summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLeif Johansson <leifj@sunet.se>2011-05-03 13:46:08 +0200
committerLeif Johansson <leifj@sunet.se>2011-05-03 13:46:08 +0200
commitc689796d307519702e063a5aad6c84e3ba8fd20c (patch)
treeccd916aea0c7b518939d33907bc04dad04bb6a1c
parent3c07c01e03b692f948a0d08832f8631ac80c8bb8 (diff)
hmm...
-rw-r--r--src/django_co_acls/models.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/django_co_acls/models.py b/src/django_co_acls/models.py
index 5c13373..2fc3170 100644
--- a/src/django_co_acls/models.py
+++ b/src/django_co_acls/models.py
@@ -10,8 +10,8 @@ from django.contrib.auth.models import Group, User
from django.db.models.fields.related import ForeignKey
class AccessControlEntry(models.Model):
- group = ForeignKey(Group,related_name='+',blank=True,null=True)
- user = ForeignKey(User,related_name='+',blank=True,null=True)
+ group = ForeignKey(Group,blank=True,null=True)
+ user = ForeignKey(User,blank=True,null=True)
permission = CharField(max_length=256)
modify_time = DateTimeField(auto_now=True)
create_time = DateTimeField(auto_now_add=True)