diff options
-rwxr-xr-x | pytask/profile/models.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/pytask/profile/models.py b/pytask/profile/models.py index de26c5c..f92b5e2 100755 --- a/pytask/profile/models.py +++ b/pytask/profile/models.py @@ -32,9 +32,9 @@ class Profile(models.Model): user = models.ForeignKey(User, unique = True) - role = models.CharField(max_length=2, - choices=ROLES_CHOICES, - default=u"Contributor") + role = models.CharField(max_length=255, + choices=ROLES_CHOICES, + default=u"Contributor") pynts = models.PositiveSmallIntegerField(default=0) |