19 lines
468 B
Python
Executable File
19 lines
468 B
Python
Executable File
# Generated by Django 4.1.2 on 2022-11-04 19:37
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('api', '0007_alter_account_role_and_more'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='account',
|
|
name='email',
|
|
field=models.EmailField(blank=True, default=None, max_length=254, null=True, unique=True, verbose_name='Почта'),
|
|
),
|
|
]
|