# Generated by Django 5.0.2 on 2025-07-24 06:39

from django.db import migrations, models


class Migration(migrations.Migration):

    dependencies = [
        ('customers', '0003_customertag_alter_customer_installation_date_and_more'),
    ]

    operations = [
        migrations.AddField(
            model_name='customer',
            name='pppoe_password',
            field=models.CharField(blank=True, help_text='PPPoE password for MikroTik authentication', max_length=20),
        ),
        migrations.AddField(
            model_name='customer',
            name='pppoe_username',
            field=models.CharField(blank=True, help_text='PPPoE username for MikroTik authentication', max_length=50),
        ),
    ]
