# -*- coding: utf-8 -*- # Generated by Django 1.11.2 on 2019-08-06 10:28 from __future__ import unicode_literals from django.db import migrations import otree.db.models class Migration(migrations.Migration): dependencies = [ ('large_task', '0001_initial'), ] operations = [ migrations.AlterField( model_name='player', name='for_how_much_do_extra_10_easy', field=otree.db.models.CurrencyField(null=True, verbose_name='This is a hypothetical question. What is the smallest payment for which you would be willing to do 10 additional small matrices?'), ), migrations.AlterField( model_name='player', name='for_how_much_do_extra_10_hard', field=otree.db.models.CurrencyField(null=True, verbose_name='This is a hypothetical question. What is the smallest payment for which you would be willing to do 10 additional large matrices?'), ), ]