# Generated by Django 3.2.20 on 2023-12-23 14:33

from django.db import migrations, models


class Migration(migrations.Migration):

    dependencies = [
        ('accounts', '0126_auto_20231217_1937'),
    ]

    operations = [
        migrations.AddField(
            model_name='newoutlookaccount',
            name='last_create_status',
            field=models.CharField(blank=True, choices=[('', 'Nothing'), ('email_user_password_set', 'Email user name and password set'), ('email_support_set', 'Email support set'), ('origin_user_password_set', 'Origin user name and password set'), ('origin_security_data_set', 'Origin security data set'), ('origin_full_created', 'Origin full created'), ('gamer_tag_changed', 'Gamer tag changed')], max_length=50, null=True),
        ),
        migrations.AlterField(
            model_name='newoutlookaccount',
            name='create_outlook',
            field=models.BooleanField(default=True),
        ),
    ]
