# Generated by Django 2.2.4 on 2020-10-18 03:05 from django.db import migrations import otree.db.models class Migration(migrations.Migration): dependencies = [ ('OR1', '0015_auto_20201017_2156'), ] operations = [ migrations.AlterField( model_name='player', name='newcheck', field=otree.db.models.StringField(choices=[('In each round reward up to 100 labor points to any Team Member.', 'In each round reward up to 100 labor points to any Team Member.'), ('In each round remove up to 100 labor points from any Team Member.', 'In each round remove up to 100 labor points from any Team Member.'), ('In each round increase the size of the Team Project by 100 points.', 'In each round increase the size of the Team Project by 100 points.')], max_length=10000, null=True), ), migrations.AlterField( model_name='player', name='newcheck5', field=otree.db.models.StringField(choices=[('Remove labor points from the Team supervisor', 'Remove labor points from the Team supervisor'), ('Remove labor points from your Coworkers', 'Remove labor points from your Coworkers'), ('Reward the Team supervisor', 'Reward the Team supervisor'), ('Reward your Coworkers', 'Reward your Coworkers'), ('None of the above', 'None of the above')], max_length=10000, null=True), ), ]