# Generated by Django 3.2.20 on 2023-12-17 16:07

from django.db import migrations, models


class Migration(migrations.Migration):

    dependencies = [
        ('accounts', '0125_fifaaccount_gamer_tag'),
    ]

    operations = [
        migrations.AddField(
            model_name='newoutlookaccount',
            name='create_outlook',
            field=models.BooleanField(default=False),
        ),
        migrations.AlterField(
            model_name='newoutlookaccount',
            name='browser',
            field=models.CharField(blank=True, choices=[('chrome', 'chrome'), ('firefox', 'firefox'), ('opera', 'opera'), ('edge', 'edge'), ('tor_windows', 'tor windows')], max_length=50, null=True),
        ),
    ]
