Miroca_Server

This commit is contained in:
Victor Alexandrovich Tsyrenschikov
2026-01-02 00:07:37 +05:00
parent 7ab28ed366
commit c9ae31bc3d
100 changed files with 3108 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
# 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='Адрес'),
),
]