# Generated by Django 4.1.4 on 2025-05-14 12:47

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


class Migration(migrations.Migration):

    dependencies = [
        ('customer_api', '0264_rename_finalizeagency_finalizeagencytable'),
    ]

    operations = [
        migrations.CreateModel(
            name='FinalizeLawyerTable',
            fields=[
                ('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
                ('property_type', models.CharField(max_length=200, null=True)),
                ('final_amount', models.CharField(max_length=200, null=True)),
                ('customer_signature', models.CharField(max_length=200, null=True)),
                ('lawyer_signature', models.TextField(default='')),
                ('created_at', models.DateTimeField(auto_now_add=True)),
                ('updated_at', models.DateTimeField(auto_now=True)),
                ('end_date', models.DateTimeField(null=True)),
                ('customer', models.ForeignKey(null=True, on_delete=django.db.models.deletion.DO_NOTHING, related_name='is_LCustomer', to='customer_api.customer')),
                ('lawyer', models.ForeignKey(null=True, on_delete=django.db.models.deletion.DO_NOTHING, related_name='is_Lawyer', to='customer_api.customer')),
            ],
            options={
                'db_table': 'finalize_lawyer',
            },
        ),
    ]
