19 рядки
441 B
Python
19 рядки
441 B
Python
# Generated by Django 5.1.2 on 2024-10-26 12:49
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('users', '0002_alter_userprofile_id_alter_userprofile_language_code_and_more'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='userprofile',
|
|
name='mail_validated',
|
|
field=models.BooleanField(default=False),
|
|
),
|
|
]
|