# Generated by Django 3.2.20 on 2023-11-14 08:48

from django.db import migrations, models


class Migration(migrations.Migration):

    dependencies = [
        ('accounts', '0120_auto_20231030_2019'),
    ]

    operations = [
        migrations.AddField(
            model_name='consolespecialnames',
            name='regex_name',
            field=models.TextField(blank=True, null=True),
        ),
        migrations.AlterField(
            model_name='fifaaccount',
            name='delete_console_reason',
            field=models.TextField(blank=True, choices=[('', ''), ('account_disable', 'Account Disable'), ('console_transfer_ban', 'Console Transfer Ban'), ('web_transfer_ban', 'Web Transfer Ban'), ('account_suspend', 'Account Suspend'), ('console_suspend', 'Console Suspend'), ('limit_reached', 'Limit Reached'), ('link_problem', 'link problem'), ('other', 'Other')], null=True),
        ),
        migrations.AlterField(
            model_name='fifaaccountsupplementarydata',
            name='last_health_status',
            field=models.TextField(blank=True, choices=[('', ''), ('account_disable', 'Account Disable'), ('console_transfer_ban', 'Console Transfer Ban'), ('web_transfer_ban', 'Web Transfer Ban'), ('account_suspend', 'Account Suspend'), ('console_suspend', 'Console Suspend'), ('limit_reached', 'Limit Reached'), ('link_problem', 'link problem'), ('other', 'Other')], null=True),
        ),
    ]
