# -*- coding: utf-8 -*- # Generated by Django 1.11.2 on 2019-06-24 11:51 from __future__ import unicode_literals from django.db import migrations import otree.db.models class Migration(migrations.Migration): dependencies = [ ('ret_adding_B1', '0007_auto_20190618_1607'), ] operations = [ migrations.RemoveField( model_name='player', name='belief_payment', ), migrations.AddField( model_name='player', name='choose_reason', field=otree.db.models.StringField(max_length=10000, null=True, verbose_name=''), ), migrations.AddField( 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, '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?'), ), migrations.AddField( model_name='player', name='degree_level_higher_token', field=otree.db.models.PositiveIntegerField(choices=[(1, 'undergraduate students'), (2, 'postgraduate students'), (3, 'not the students'), (99, 'Prefer not to say')], null=True, verbose_name='Which group of participants do you think gave the most correct answers, on average, in such a task?'), ), migrations.AddField( model_name='player', name='gender_higher_token', field=otree.db.models.PositiveIntegerField(choices=[(1, 'Female'), (0, 'Male'), (2, 'Other'), (99, 'Prefer not to say')], null=True, verbose_name='Which gender group do you think gave the most correct answers, on average, in such a task?'), ), ]