# Generated by Django 3.2.20 on 2023-10-25 18:27

from django.db import migrations, models
import django.db.models.deletion
import django.utils.timezone


class Migration(migrations.Migration):

    dependencies = [
        ('accounts', '0116_newoutlookaccount_origin_app_code'),
    ]

    operations = [
        migrations.AlterField(
            model_name='newoutlookaccount',
            name='browser',
            field=models.CharField(blank=True, choices=[('chrome', 'chrome'), ('firefox', 'firefox'), ('opera', 'opera'), ('edge', 'edge')], max_length=50, null=True),
        ),
        migrations.CreateModel(
            name='TelegramMessage',
            fields=[
                ('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
                ('create_time', models.DateTimeField(default=django.utils.timezone.now)),
                ('message_type', models.CharField(blank=True, choices=[('', 'Normal'), ('error', 'Error'), ('warning', 'Warning')], max_length=50, null=True)),
                ('text', models.TextField(blank=True, null=True)),
                ('fifa_account', models.OneToOneField(blank=True, null=True, on_delete=django.db.models.deletion.SET_NULL, to='accounts.fifaaccount')),
            ],
        ),
    ]
