# Generated by Django 3.2.20 on 2023-10-30 16:49

from django.db import migrations, models


class Migration(migrations.Migration):

    dependencies = [
        ('accounts', '0119_alter_fifaaccountworkerror_fifa_account'),
    ]

    operations = [
        migrations.AlterField(
            model_name='newoutlookaccount',
            name='support_email',
            field=models.CharField(blank=True, default='', max_length=255, null=True),
        ),
        migrations.AlterField(
            model_name='newoutlookaccount',
            name='support_imap_host',
            field=models.CharField(blank=True, default='', max_length=50, null=True),
        ),
        migrations.AlterField(
            model_name='newoutlookaccount',
            name='support_password',
            field=models.CharField(blank=True, default='', max_length=50, null=True),
        ),
    ]
