# -*- coding: utf-8 -*- # Generated by Django 1.11.2 on 2019-05-27 18:45 from __future__ import unicode_literals from django.db import migrations import radiogrid.db class Migration(migrations.Migration): dependencies = [ ('survey', '0002_remove_subsession_username_treatment'), ] operations = [ migrations.AlterField( model_name='player', name='opinion_samples', field=radiogrid.db.RadioGridField(null=True, require_all_fields=True, rows=((1, 'I enjoyed reading the samples.'), (2, 'I found it easy to understand the information presented in the samples.'), (3, 'I felt that some of the samples (text or images) were of better journalistic or entertainment quality than others.'), (4, 'I felt that some of the samples (text or images) did not treat men and women the same, in the way that they described or presented people.')), values=((1, 'Strongly disagree'), (2, 'Disagree'), (3, 'Somewhat disagree'), (4, 'Somewhat agree'), (5, 'Agree'), (6, 'Strongly disagree')), verbose_name='Thinking of the media articles you were shown today, please rate from strongly disagree to strongly agree how much you agree with the following statements.'), ), ]