# Generated by Django 5.1.6 on 2025-04-12 09:09

import iptv_activation.models
from django.db import migrations, models


class Migration(migrations.Migration):

    dependencies = [
        ('iptv_activation', '0004_skylinkiptvplan'),
    ]

    operations = [
        migrations.CreateModel(
            name='IPTVActivationLog',
            fields=[
                ('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
                ('client_id', models.CharField(blank=True, max_length=255, null=True)),
                ('activation_date', models.DateTimeField(auto_now_add=True)),
                ('status', models.CharField(blank=True, default='Success', max_length=50, null=True)),
                ('message', models.TextField(blank=True, null=True)),
                ('input', models.JSONField(blank=True, null=True)),
                ('response_status', models.IntegerField(blank=True, null=True)),
                ('output', models.JSONField(blank=True, null=True)),
                ('endpoint', models.CharField(blank=True, max_length=5000, null=True)),
                ('expiration_date', models.DateTimeField(default=iptv_activation.models.get_expiration_date)),
                ('phone_number', models.CharField(blank=True, max_length=15, null=True)),
            ],
        ),
    ]
