# Generated by Django 5.1.6 on 2025-04-25 04:56

from django.db import migrations, models


class Migration(migrations.Migration):

    dependencies = [
        ('ott_subscription', '0022_ottactivationlog_billing_cycle_and_more'),
    ]

    operations = [
        migrations.AddField(
            model_name='jiohotstarcode',
            name='billing_cycle',
            field=models.IntegerField(default=1, help_text='Billing cycle in months: 1 (Monthly), 3 (Quarterly), 6 (Half-Yearly), 12 (Yearly)'),
        ),
        migrations.AddField(
            model_name='jiohotstarcode',
            name='billing_from_date',
            field=models.DateField(blank=True, null=True),
        ),
        migrations.AddField(
            model_name='jiohotstarcode',
            name='billing_to_date',
            field=models.DateField(blank=True, null=True),
        ),
        migrations.AddField(
            model_name='jiohotstarcode',
            name='invoice_amount',
            field=models.DecimalField(blank=True, decimal_places=2, max_digits=10, null=True),
        ),
        migrations.AddField(
            model_name='jiohotstarcode',
            name='invoice_id',
            field=models.CharField(blank=True, max_length=255, null=True),
        ),
    ]
