# Generated by Django 5.1.4 on 2026-06-29 17:53

import django.db.models.deletion
from django.db import migrations, models


class Migration(migrations.Migration):

    dependencies = [
        ('human_resource', '0011_staffdeductionscheme_overrides'),
        ('sales_and_marketing', '0012_customerprofile_verification_customerdocs_doctypes'),
    ]

    operations = [
        migrations.CreateModel(
            name='CustomerAccountManager',
            fields=[
                ('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
                ('customer_account_manager_description', models.CharField(blank=True, default='', max_length=500)),
                ('customer_profile', models.OneToOneField(null=True, on_delete=django.db.models.deletion.CASCADE, related_name='account_manager', to='sales_and_marketing.customerprofile')),
                ('staff_profile', models.ForeignKey(null=True, on_delete=django.db.models.deletion.SET_NULL, related_name='staff_customer_accounts', to='human_resource.staffprofile')),
            ],
        ),
    ]
