diff options
author | Prabhu Ramachandran | 2017-05-25 17:42:42 +0530 |
---|---|---|
committer | GitHub | 2017-05-25 17:42:42 +0530 |
commit | 80b67d07ceaf4c73705a27ee0bfc905e30b19ac4 (patch) | |
tree | d828f6f7697438d8addf04140f6c32bd005aaf6f /yaksh/models.py | |
parent | 7baaa70c0e7f660ad7482c3c3950eab171b27cd3 (diff) | |
parent | e6ab47d2ea99b703e3c261ad5e7b6785f6f8d5d5 (diff) | |
download | online_test-80b67d07ceaf4c73705a27ee0bfc905e30b19ac4.tar.gz online_test-80b67d07ceaf4c73705a27ee0bfc905e30b19ac4.tar.bz2 online_test-80b67d07ceaf4c73705a27ee0bfc905e30b19ac4.zip |
Merge pull request #296 from adityacp/fix_email_verfication_bug
Fix email verfication bug
Diffstat (limited to 'yaksh/models.py')
-rw-r--r-- | yaksh/models.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/yaksh/models.py b/yaksh/models.py index 565bb23..79732cc 100644 --- a/yaksh/models.py +++ b/yaksh/models.py @@ -293,7 +293,7 @@ class Profile(models.Model): choices=[(tz, tz) for tz in pytz.common_timezones] ) is_email_verified = models.BooleanField(default=False) - activation_key = models.CharField(max_length=40, blank=True, null=True) + activation_key = models.CharField(max_length=255, blank=True, null=True) key_expiry_time = models.DateTimeField(blank=True, null=True) def get_user_dir(self): |