# Generated by Django 4.1.4 on 2025-03-27 13:02

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


class Migration(migrations.Migration):

    dependencies = [
        ('customer_api', '0243_bussinessforsale_shareholder_description_and_more'),
    ]

    operations = [
        migrations.CreateModel(
            name='CustomerDoItReeipo',
            fields=[
                ('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
                ('full_name', models.CharField(max_length=255)),
                ('property_project', models.CharField(blank=True, max_length=255, null=True)),
                ('email_address', models.EmailField(max_length=254)),
                ('business_for_sale', models.CharField(blank=True, max_length=255, null=True)),
                ('phone_number', models.CharField(max_length=20)),
                ('category', models.CharField(blank=True, max_length=100, null=True)),
                ('property_image', models.ImageField(blank=True, null=True, upload_to='property_images/')),
                ('property_video', models.FileField(blank=True, null=True, upload_to='property_videos/')),
                ('property_doc', models.FileField(blank=True, null=True, upload_to='property_docs/')),
                ('created_at', models.DateTimeField(auto_now_add=True)),
                ('updated_at', models.DateTimeField(auto_now=True)),
                ('customer', models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.DO_NOTHING, to='customer_api.customer')),
            ],
            options={
                'db_table': 'customer_do_it_by_reeipo',
            },
        ),
    ]
