# Generated by Django 5.1.6 on 2025-03-31 12:09

from django.db import migrations, models


class Migration(migrations.Migration):

    dependencies = [
        ('ott_subscription', '0007_skylinkplan_amount'),
    ]

    operations = [
        migrations.CreateModel(
            name='JioHotstarCode',
            fields=[
                ('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
                ('code', models.CharField(max_length=100, unique=True)),
                ('activated_flag', models.BooleanField(default=False)),
                ('activated_date', models.DateTimeField(blank=True, null=True)),
                ('activated_client_id', models.CharField(blank=True, max_length=100, null=True)),
                ('client_phone_number', models.CharField(blank=True, max_length=15, null=True)),
                ('type', models.CharField(choices=[('mobile', 'Mobile'), ('super', 'Super')], default='mobile', max_length=10)),
            ],
        ),
    ]
