Revision bd3318fb db/models.py
b/db/models.py | ||
---|---|---|
53 | 53 |
auth_token_expires = models.DateTimeField('Time of auth token expiration', auto_now_add=True, null = True) |
54 | 54 |
tmp_auth_token = models.CharField('Temporary authentication token', max_length=32, null=True) |
55 | 55 |
tmp_auth_token_expires = models.DateTimeField('Time of temporary auth token expiration', auto_now_add=True, null = True) |
56 |
type = models.CharField('Current Image State', choices=ACCOUNT_TYPE, max_length=30) |
|
56 |
type = models.CharField('Account type', choices=ACCOUNT_TYPE, |
|
57 |
max_length=30) |
|
57 | 58 |
created = models.DateTimeField('Time of creation', auto_now_add=True) |
58 | 59 |
updated = models.DateTimeField('Time of last update', auto_now=True) |
59 | 60 |
max_invitations = models.IntegerField('Max number of invitations', |
Also available in: Unified diff