# Generated by Django 4.2.12 on 2025-12-22 15:28

from django.db import migrations, models
import django.db.models.deletion


class Migration(migrations.Migration):

    dependencies = [
        ('users', '0002_alter_client_reference_from_and_more'),
    ]

    operations = [
        migrations.AddField(
            model_name='client',
            name='relation_other',
            field=models.CharField(blank=True, default=None, max_length=25, null=True),
        ),
        migrations.AddField(
            model_name='company',
            name='account_concerned_person_email',
            field=models.EmailField(blank=True, default=None, max_length=254, null=True),
        ),
        migrations.AddField(
            model_name='company',
            name='company_email',
            field=models.EmailField(blank=True, default=None, max_length=254, null=True),
        ),
        migrations.AddField(
            model_name='company',
            name='reference_client',
            field=models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.SET_NULL, to='users.client'),
        ),
        migrations.AddField(
            model_name='company',
            name='reference_company',
            field=models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.SET_NULL, to='users.company'),
        ),
        migrations.AddField(
            model_name='company',
            name='reference_from',
            field=models.CharField(blank=True, choices=[('Walk In', 'Walk In'), ('BNI', 'BNI'), ('Client', 'Client'), ('Organization', 'Organization'), ('Atul Sir', 'Atul_sir'), ('Jignesh Sir', 'Jignesh_Sir'), ('Counter', 'Counter/Internal_Staff')], max_length=50, null=True),
        ),
        migrations.AddField(
            model_name='company',
            name='reference_remark',
            field=models.CharField(blank=True, default='', max_length=150, null=True),
        ),
        migrations.AddField(
            model_name='company',
            name='travel_concerned_email',
            field=models.EmailField(blank=True, default=None, max_length=254, null=True),
        ),
        migrations.AlterField(
            model_name='client',
            name='relation',
            field=models.CharField(blank=True, choices=[('Father', 'Father'), ('Mother', 'Mother'), ('Spouse', 'Spouse'), ('Daughter', 'Daughter'), ('Brother', 'Brother'), ('Sister', 'Sister'), ('Son', 'Son'), ('Other', 'Other')], max_length=20, null=True),
        ),
        migrations.AlterField(
            model_name='clientrelation',
            name='relation',
            field=models.CharField(blank=True, choices=[('Father', 'Father'), ('Mother', 'Mother'), ('Spouse', 'Spouse'), ('Daughter', 'Daughter'), ('Brother', 'Brother'), ('Sister', 'Sister'), ('Son', 'Son'), ('Other', 'Other')], max_length=20, null=True),
        ),
    ]
