# -*- coding: utf-8 -*- # Generated by Django 1.11.2 on 2019-05-27 19:50 from __future__ import unicode_literals from django.db import migrations import radiogrid.db class Migration(migrations.Migration): dependencies = [ ('survey', '0008_auto_20190527_2150'), ] 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).'), ), ]