# Generated by Django 3.2.12 on 2023-01-19 14:12

from django.db import migrations, models
import django.db.models.deletion


class Migration(migrations.Migration):

    dependencies = [
        ('accounts', '0054_fifaaccount_use_request_login'),
    ]

    operations = [
        migrations.AddField(
            model_name='fifaaccount',
            name='delete_console_reason',
            field=models.TextField(blank=True, null=True),
        ),
        migrations.AddField(
            model_name='fifaaccount',
            name='previous_console',
            field=models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.SET_NULL, related_name='previous_console_fifa_account', to='accounts.console'),
        ),
    ]
