# Generated by Django 3.2.25 on 2025-06-17 13:23

from django.db import migrations, models
import django.utils.timezone


class Migration(migrations.Migration):

    dependencies = [
        ('accounts', '0169_auto_20250501_1653'),
    ]

    operations = [
        migrations.CreateModel(
            name='HourlyFifaAccountCreditLogHistory',
            fields=[
                ('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
                ('create_time', models.DateTimeField(default=django.utils.timezone.now)),
                ('current_credit', models.IntegerField(default=0)),
                ('today_discharges_coin', models.IntegerField(default=0)),
                ('today_discharges_mode2_coin', models.IntegerField(default=0)),
                ('today_discharges_mode3_coin', models.IntegerField(default=0)),
                ('today_production', models.IntegerField(default=0)),
                ('today_console_trades_profit', models.IntegerField(default=0)),
                ('today_console_trade_salary', models.IntegerField(default=0)),
                ('items_forcast', models.IntegerField(default=0)),
                ('invest_trade_generation', models.IntegerField(default=0)),
            ],
        ),
        migrations.AlterField(
            model_name='console',
            name='allowed_account_work_day',
            field=models.IntegerField(default=50),
        ),
        migrations.AlterField(
            model_name='fifaaccount',
            name='delete_console_reason',
            field=models.TextField(blank=True, choices=[('', ''), ('account_disable', 'Account Disable'), ('console_transfer_ban', 'Console Transfer Ban'), ('web_transfer_ban', 'Web Transfer Ban'), ('account_suspend', 'Account Suspend'), ('console_suspend', 'Console Suspend'), ('limit_reached', 'Limit Reached'), ('link_problem', 'link problem'), ('other', 'Other'), ('opened_web', 'Opened Web App'), ('no_console', 'Console has Problem')], null=True),
        ),
        migrations.AlterField(
            model_name='fifaproxy',
            name='type_name',
            field=models.CharField(choices=[('', 'Normal'), ('mule', 'Mule'), ('web_healthy', 'Web Healthy')], default='', max_length=255),
        ),
        migrations.AlterField(
            model_name='telegrammessage',
            name='message_type',
            field=models.CharField(blank=True, choices=[('', 'Normal'), ('error', 'Error'), ('warning', 'Warning'), ('info', 'Information')], max_length=50, null=True),
        ),
    ]
