joeni

0010_auto_20180410_1652.py

1
# Generated by Django 2.0b1 on 2018-04-10 16:52
2
3
from django.db import migrations, models
4
5
6
class Migration(migrations.Migration):
7
8
    dependencies = [
9
        ('courses', '0009_upload_course'),
10
    ]
11
12
    operations = [
13
        migrations.AlterField(
14
            model_name='study',
15
            name='degree_type',
16
            field=models.CharField(choices=[('BSc', 'Bachelor of Science'), ('MSc', 'Master of Science'), ('LL.B', 'Bachelor of Laws'), ('LL.M', 'Master of Laws'), ('ir.', 'Engineer'), ('ing.', 'Technical Engineer'), ('BA', 'Bachelor of Arts'), ('MA', 'Master of Arts')], help_text='The type of degree one obtains upon passing this study.', max_length=64),
17
        ),
18
    ]
19