# -*- coding: utf-8 -*- # Generated by Django 1.11.2 on 2019-06-25 12:05 from __future__ import unicode_literals from django.db import migrations import otree.db.models class Migration(migrations.Migration): dependencies = [ ('ret_adding_B1', '0010_auto_20190624_1319'), ] operations = [ migrations.AlterField( model_name='player', name='degree_higher_token', 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, 'A natural science'), (9, 'other'), (99, 'Prefer not to say')], null=True, verbose_name='What degree do the students pursue who you think received the highest number of tokens, on average, for each correctly added number from the experimenter?'), ), ]