# Generated by Django 4.1.4 on 2023-05-01 11:20

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


class Migration(migrations.Migration):

    dependencies = [
        ('customer_api', '0067_alter_investmentmyproject_amenities'),
    ]

    operations = [
        migrations.CreateModel(
            name='Payment',
            fields=[
                ('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
                ('mode', models.CharField(max_length=250, null=True)),
                ('payment_status', models.CharField(max_length=100, null=True)),
                ('payment_recipet', models.CharField(max_length=250, null=True)),
                ('recipet_status', models.CharField(max_length=100, null=True)),
                ('start_date', models.DateTimeField(auto_now_add=True)),
                ('end_date', models.DateTimeField(null=True)),
                ('contract', models.ForeignKey(null=True, on_delete=django.db.models.deletion.DO_NOTHING, to='customer_api.contract')),
            ],
            options={
                'db_table': 'payment',
            },
        ),
    ]
