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
b796ba19
Commit
b796ba19
authored
Nov 17, 2016
by
J. Cliff Dyer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add missing migrations
parent
06b3b401
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
38 additions
and
0 deletions
+38
-0
common/djangoapps/django_comment_common/migrations/0004_auto_20161117_1209.py
+19
-0
common/djangoapps/student/migrations/0008_auto_20161117_1209.py
+19
-0
No files found.
common/djangoapps/django_comment_common/migrations/0004_auto_20161117_1209.py
0 → 100644
View file @
b796ba19
# -*- coding: utf-8 -*-
from
__future__
import
unicode_literals
from
django.db
import
migrations
,
models
class
Migration
(
migrations
.
Migration
):
dependencies
=
[
(
'django_comment_common'
,
'0003_enable_forums'
),
]
operations
=
[
migrations
.
AlterField
(
model_name
=
'forumsconfig'
,
name
=
'connection_timeout'
,
field
=
models
.
FloatField
(
default
=
5.0
,
help_text
=
b
'Seconds to wait when trying to connect to the comment service.'
),
),
]
common/djangoapps/student/migrations/0008_auto_20161117_1209.py
0 → 100644
View file @
b796ba19
# -*- coding: utf-8 -*-
from
__future__
import
unicode_literals
from
django.db
import
migrations
,
models
class
Migration
(
migrations
.
Migration
):
dependencies
=
[
(
'student'
,
'0007_registrationcookieconfiguration'
),
]
operations
=
[
migrations
.
AlterField
(
model_name
=
'userprofile'
,
name
=
'level_of_education'
,
field
=
models
.
CharField
(
blank
=
True
,
max_length
=
6
,
null
=
True
,
db_index
=
True
,
choices
=
[(
b
'p'
,
b
'Doctorate'
),
(
b
'm'
,
b
"Master's or professional degree"
),
(
b
'b'
,
b
"Bachelor's degree"
),
(
b
'a'
,
b
'Associate degree'
),
(
b
'hs'
,
b
'Secondary/high school'
),
(
b
'jhs'
,
b
'Junior secondary/junior high/middle school'
),
(
b
'el'
,
b
'Elementary/primary school'
),
(
b
'none'
,
b
'No formal education'
),
(
b
'other'
,
b
'Other education'
)]),
),
]
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