# Generated by Django 3.2.20 on 2023-10-08 09:02

from django.db import migrations, models


class Migration(migrations.Migration):

    dependencies = [
        ('accounts', '0112_fifaaccountworkerror'),
    ]

    operations = [
        migrations.AddField(
            model_name='newoutlookaccount',
            name='browser',
            field=models.CharField(blank=True, choices=[('chrome', 'chrome'), ('firefox', 'firefox')], max_length=50, null=True),
        ),
        migrations.AddField(
            model_name='newoutlookaccount',
            name='need_proxy',
            field=models.BooleanField(default=False),
        ),
        migrations.AlterField(
            model_name='fifaaccount',
            name='allowed_play_game',
            field=models.IntegerField(default=5),
        ),
        migrations.AlterField(
            model_name='fifaaccountworkerror',
            name='solve_status',
            field=models.CharField(blank=True, choices=[('', ''), ('solved', 'Solved'), ('pre_solved', 'Pre Solved')], max_length=255, null=True),
        ),
    ]
