# -*- coding: utf-8 -*- # Generated by Django 1.11.2 on 2019-06-24 12:08 from __future__ import unicode_literals from django.db import migrations import otree.db.models class Migration(migrations.Migration): dependencies = [ ('chooseTask_B1', '0005_auto_20190624_1251'), ] operations = [ migrations.AlterField( model_name='player', name='degree_perform', field=otree.db.models.PositiveIntegerField(choices=[(1, 'Psychology'), (2, 'Sociology'), (3, 'Law'), (4, 'Economics'), (5, 'Government and International Relations'), (6, 'Mathematics'), (7, 'Computer Science'), (8, 'natural science'), (9, 'other'), (99, 'Prefer not to say')], null=True, verbose_name='What degree do the students pursue who you think gave the most correct answers, on average, in such a task?'), ), ]