# Generated by Django 5.0.2 on 2025-08-09 20:40

from django.db import migrations, models


class Migration(migrations.Migration):

    dependencies = [
        ('customers', '0008_delete_useractivitylog'),
    ]

    operations = [
        migrations.AddField(
            model_name='customer',
            name='company_name',
            field=models.CharField(blank=True, help_text='For institutional customers', max_length=200),
        ),
        migrations.AddField(
            model_name='customer',
            name='contact_person_first_name',
            field=models.CharField(blank=True, help_text="Contact person's first name", max_length=100),
        ),
        migrations.AddField(
            model_name='customer',
            name='contact_person_last_name',
            field=models.CharField(blank=True, help_text="Contact person's last name", max_length=100),
        ),
        migrations.AddField(
            model_name='customer',
            name='customer_type',
            field=models.CharField(choices=[('individual', 'Individual'), ('institution', 'Institution')], default='individual', max_length=20),
        ),
        migrations.AlterField(
            model_name='customer',
            name='full_name',
            field=models.CharField(blank=True, help_text='For individual customers', max_length=200),
        ),
    ]
