# Generated by Django 4.1.4 on 2023-07-04 10:23

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


class Migration(migrations.Migration):

    dependencies = [
        ('customer_api', '0098_investmentmycompany_self_report'),
    ]

    operations = [
        migrations.CreateModel(
            name='CustomerSaveSearches',
            fields=[
                ('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
                ('save_searches', models.TextField(null=True)),
                ('start_date', models.DateTimeField(auto_now_add=True)),
                ('end_date', models.DateTimeField(null=True)),
                ('customer', models.ForeignKey(null=True, on_delete=django.db.models.deletion.DO_NOTHING, to='customer_api.customer')),
            ],
            options={
                'db_table': 'customer_save_searches',
            },
        ),
    ]
