# -*- coding: utf-8 -*- # Generated by Django 1.11.2 on 2019-05-27 19:48 from __future__ import unicode_literals from django.db import migrations import otree.db.models import radiogrid.db class Migration(migrations.Migration): dependencies = [ ('survey', '0006_auto_20190527_2131'), ] operations = [ migrations.AlterField( model_name='player', name='careers', field=radiogrid.db.RadioGridField(null=True, require_all_fields=True, rows=([1, 'Journalist'], [2, 'Local politician'], [3, 'Economist'], [4, 'Member of parliament'], [5, 'Business owner'], [6, 'Lawyer'], [7, 'School teacher or principal'], [8, 'Nurse'], [9, 'Caretaker'], [10, 'Office administrator']), values=((1, 'No'), (2, 'Yes')), verbose_name='Of the careers listed below, please select all the ones you would potentially be interested in (whether it relates to your actual career or not.'), ), migrations.AlterField( model_name='player', name='gender', field=otree.db.models.IntegerField(choices=[[1, 'Male'], [2, 'Female'], [3, 'My gender is not listed']], null=True, verbose_name='What gender do you consider yourself to be?'), ), migrations.AlterField( model_name='player', name='identity', field=radiogrid.db.RadioGridField(null=True, require_all_fields=True, rows=((1, 'My race or ethnic background'), (2, 'My personal goals and hopes for the future'), (3, 'My religion'), (4, 'My sex or my gender'), (5, 'My occupational choice and career plans'), (6, 'My commitments on political issues or my political activities')), values=((1, 'Not important to my identity'), (2, 'Slightly important to my identity'), (3, 'Somewhat important to my identity'), (4, 'Very important to my identity'), (5, 'Extremely important to my identity')), verbose_name='These items describe different aspects of identity. Please read each item carefully and consider how it applies to you.'), ), migrations.AlterField( model_name='player', name='media_habits', field=radiogrid.db.RadioGridField(null=True, require_all_fields=True, rows=((1, 'Read/watch/listen to political news'), (2, 'Read/watch/listen to celebrity news'), (3, 'Read/watch/listen to sports news'), (4, 'Watch documentaries (movies or series)'), (5, 'Watch romantic comedies (movies or series)'), (6, 'Use Twitter, Facebook, Instagram or similar'), (7, 'Play video games')), values=((1, '0 days'), (2, '1-2 days'), (3, '3-4 days'), (4, '5-6 days'), (5, '7 days')), verbose_name='Please indicate for each item how many days in a normal week you would do the following.'), ), ]