# Generated by Django 5.1.6 on 2025-04-12 07:31

from django.db import migrations, models


class Migration(migrations.Migration):

    dependencies = [
        ('iptv_activation', '0003_tariff'),
    ]

    operations = [
        migrations.CreateModel(
            name='SkylinkIPTVPlan',
            fields=[
                ('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
                ('name', models.CharField(max_length=100)),
                ('code', models.CharField(max_length=50, unique=True)),
                ('status', models.CharField(choices=[('active', 'Active'), ('inactive', 'Inactive')], default='active', max_length=10)),
                ('amount', models.DecimalField(decimal_places=2, default=0.0, max_digits=10)),
                ('bandwidth_verified_flag', models.BooleanField(default=False)),
                ('bandwidth', models.CharField(blank=True, max_length=50, null=True)),
                ('tariffs', models.ManyToManyField(blank=True, to='iptv_activation.tariff')),
            ],
        ),
    ]
