# -*- coding: utf-8 -*- # Generated by Django 1.11.2 on 2018-08-07 06:08 from __future__ import unicode_literals from django.db import migrations import otree.db.models class Migration(migrations.Migration): dependencies = [ ('UG_MT', '0001_initial'), ] operations = [ migrations.RemoveField( model_name='player', name='amount_fortwo', ), migrations.AddField( model_name='group', name='amount_fortwo', field=otree.db.models.CurrencyField(null=True, verbose_name='What amount do you want to tell to the responder that you have been given?'), ), migrations.AddField( model_name='subsession', name='amount_fortwo', field=otree.db.models.CurrencyField(null=True, verbose_name='What amount do you want to tell to the responder that you have been given?'), ), ]