# Generated by Django 3.2.20 on 2023-09-28 08:45

from django.db import migrations, models
import django.db.models.deletion
import django.utils.timezone


class Migration(migrations.Migration):

    dependencies = [
        ('accounts', '0106_auto_20230923_1938'),
    ]

    operations = [
        migrations.CreateModel(
            name='NewOutlookAccount',
            fields=[
                ('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
                ('create_time', models.DateTimeField(default=django.utils.timezone.now)),
                ('user_name', models.CharField(max_length=255)),
                ('password', models.CharField(max_length=50)),
                ('first_name', models.CharField(max_length=50)),
                ('last_name', models.CharField(max_length=50)),
                ('birth_date', models.DateField(blank=True, null=True)),
                ('support_email', models.CharField(default='', max_length=255)),
                ('support_password', models.CharField(default='', max_length=50)),
                ('support_imap_host', models.CharField(default='', max_length=50)),
                ('start_signup_time', models.DateTimeField(default=None)),
                ('signup_status', models.CharField(blank=True, max_length=50, null=True)),
                ('signup_error', models.TextField(default=None)),
                ('gamer_tag', models.CharField(blank=True, max_length=255, null=True)),
                ('console', models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.SET_NULL, to='accounts.console')),
                ('proxy', models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.SET_NULL, to='accounts.fifaproxy')),
            ],
        ),
    ]
