Add missing migrations

This commit is contained in:
J. Cliff Dyer
2016-11-17 12:11:25 -05:00
parent 06b3b401ea
commit b796ba1900
2 changed files with 38 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
# -*- 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.'),
),
]

View File

@@ -0,0 +1,19 @@
# -*- 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')]),
),
]