Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
E
edx-platform
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
edx
edx-platform
Commits
64888f1c
Commit
64888f1c
authored
Jul 12, 2012
by
Bridger Maxwell
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Re-added the migration to expand the meta field.
parent
d739e61e
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
1 additions
and
1 deletions
+1
-1
lms/djangoapps/student/migrations/0008__auto__add_courseregistration.py
+0
-0
lms/djangoapps/student/migrations/0009_auto__del_courseregistration__add_courseenrollment.py
+0
-0
lms/djangoapps/student/migrations/0010_auto__chg_field_courseenrollment_course_id.py
+0
-0
lms/djangoapps/student/migrations/0011_auto__chg_field_courseenrollment_user__del_unique_courseenrollment_use.py
+0
-0
lms/djangoapps/student/migrations/0012_auto__add_field_userprofile_gender__add_field_userprofile_date_of_birt.py
+0
-0
lms/djangoapps/student/models.py
+1
-1
No files found.
lms/djangoapps/student/migrations/000
6
_auto__add_courseregistration.py
→
lms/djangoapps/student/migrations/000
8_
_auto__add_courseregistration.py
View file @
64888f1c
File moved
lms/djangoapps/student/migrations/000
8
_auto__del_courseregistration__add_courseenrollment.py
→
lms/djangoapps/student/migrations/000
9
_auto__del_courseregistration__add_courseenrollment.py
View file @
64888f1c
File moved
lms/djangoapps/student/migrations/00
09
_auto__chg_field_courseenrollment_course_id.py
→
lms/djangoapps/student/migrations/00
10
_auto__chg_field_courseenrollment_course_id.py
View file @
64888f1c
File moved
lms/djangoapps/student/migrations/001
0
_auto__chg_field_courseenrollment_user__del_unique_courseenrollment_use.py
→
lms/djangoapps/student/migrations/001
1
_auto__chg_field_courseenrollment_user__del_unique_courseenrollment_use.py
View file @
64888f1c
File moved
lms/djangoapps/student/migrations/001
1
_auto__add_field_userprofile_gender__add_field_userprofile_date_of_birt.py
→
lms/djangoapps/student/migrations/001
2
_auto__add_field_userprofile_gender__add_field_userprofile_date_of_birt.py
View file @
64888f1c
File moved
lms/djangoapps/student/models.py
View file @
64888f1c
...
...
@@ -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
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment