# Generated by Django 4.0.2 on 2022-02-16 01:22 import address.models from django.db import migrations, models import django.db.models.deletion import phonenumber_field.modelfields class Migration(migrations.Migration): initial = True dependencies = [ ('address', '0004_alter_address_id_alter_country_id_alter_locality_id_and_more'), ] operations = [ migrations.CreateModel( name='Response', fields=[ ('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), ('name', models.CharField(max_length=100)), ('email', models.EmailField(blank=True, max_length=100, null=True)), ('phone', phonenumber_field.modelfields.PhoneNumberField(blank=True, max_length=128, null=True, region=None)), ('created_at', models.DateTimeField(auto_now_add=True)), ('address', address.models.AddressField(blank=True, null=True, on_delete=django.db.models.deletion.CASCADE, to='address.address')), ], options={ 'verbose_name': 'Response', 'verbose_name_plural': 'Responses', 'ordering': ['created_at'], }, ), ]