Re-added the migration to expand the meta field.

This commit is contained in:
Bridger Maxwell
2012-07-12 10:29:15 -04:00
parent d739e61ebd
commit 64888f1c1b
6 changed files with 1 additions and 1 deletions

View File

@@ -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)