# Generated by Django 5.1.3 on 2024-11-29 13:02 import address.models import django.db.models.deletion from django.db import migrations class Migration(migrations.Migration): dependencies = [ ('address', '0003_auto_20200830_1851'), ('auth_miroca', '0004_customuser_address_customuser_first_name'), ] operations = [ migrations.AlterField( model_name='customuser', name='address', field=address.models.AddressField(null=True, on_delete=django.db.models.deletion.SET_NULL, to='address.address', verbose_name='Адрес'), ), ]