# Generated by Django 3.2.20 on 2023-09-29 07:02

from django.db import migrations, models
import django.db.models.deletion
import django.utils.timezone


class Migration(migrations.Migration):

    dependencies = [
        ('accounts', '0109_alter_newoutlookaccount_signup_error'),
    ]

    operations = [
        migrations.CreateModel(
            name='NewConsoleAccount',
            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)),
                ('gamer_tag', models.CharField(blank=True, max_length=255, 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)),
                ('add_start_time', models.DateTimeField(blank=True, default=None, null=True)),
                ('add_status', models.CharField(blank=True, max_length=50, null=True)),
                ('add_error', models.TextField(blank=True, default=None, null=True)),
                ('console', models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.SET_NULL, to='accounts.console')),
            ],
        ),
    ]
