# Generated by Django 5.1.6 on 2025-05-12 10:34

from django.db import migrations, models


class Migration(migrations.Migration):

    dependencies = [
        ('pricing_plan', '0002_plan_speed'),
    ]

    operations = [
        migrations.CreateModel(
            name='Zone',
            fields=[
                ('id', models.AutoField(primary_key=True, serialize=False)),
                ('zone_name', models.CharField(blank=True, max_length=255, null=True)),
                ('service_type', models.CharField(blank=True, choices=[('Skylink', 'Skylink'), ('Skyplay', 'Skyplay')], help_text='Specifies the service type: Skylink (broadband) or Skyplay (IPTV)', max_length=50, null=True)),
                ('active_status', models.BooleanField(default=True)),
            ],
        ),
    ]
