Re-added the migration to expand the meta field.
This commit is contained in:
@@ -29,7 +29,7 @@ class UserProfile(models.Model):
|
||||
name = models.CharField(blank=True, max_length=255, db_index=True)
|
||||
language = models.CharField(blank=True, max_length=255, db_index=True)
|
||||
location = models.CharField(blank=True, max_length=255, db_index=True) # TODO: What are we doing with this?
|
||||
meta = models.CharField(blank=True, max_length=255) # JSON dictionary for future expansion
|
||||
meta = models.TextField(blank=True) # JSON dictionary for future expansion
|
||||
courseware = models.CharField(blank=True, max_length=255, default='course.xml')
|
||||
gender = models.CharField(blank=True, null=True, max_length=6, choices=GENDER_CHOICES)
|
||||
date_of_birth = models.DateField(blank=True, null=True)
|
||||
|
||||
Reference in New Issue
Block a user