19 lines
414 B
Python
19 lines
414 B
Python
|
# Generated by Django 5.1.2 on 2024-10-27 17:50
|
||
|
|
||
|
from django.db import migrations, models
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
dependencies = [
|
||
|
('users', '0003_userprofile_mail_validated'),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.AddField(
|
||
|
model_name='userprofile',
|
||
|
name='mail_pending',
|
||
|
field=models.EmailField(max_length=254, null=True),
|
||
|
),
|
||
|
]
|