# -*- coding: utf-8 -*- # Generated by Django 1.11.2 on 2019-06-19 09:14 from __future__ import unicode_literals from django.db import migrations import otree.db.models class Migration(migrations.Migration): dependencies = [ ('survey_no_frame', '0001_initial'), ] operations = [ migrations.AlterField( model_name='player', name='women_concern', field=otree.db.models.PositiveIntegerField(choices=[(1, 'Achievement'), (2, 'Neither achievement nor reason for concern'), (3, 'Reason for concern'), (99, 'Prefer not to say')], null=True, verbose_name='As of 2018, 24% of members of national parliaments around the world are women. Is this percentage of women an achievement or reason for concern?'), ), ]