mirror of
https://github.com/i701/sarlink-portal-api.git
synced 2025-04-20 05:56:52 +00:00
25 lines
612 B
Python
25 lines
612 B
Python
# Generated by Django 5.1.2 on 2025-03-24 13:19
|
|
|
|
import datetime
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
dependencies = [
|
|
("api", "0010_alter_user_mobile"),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name="user",
|
|
name="email",
|
|
field=models.EmailField(
|
|
blank=True,
|
|
default=datetime.datetime(2025, 3, 24, 13, 19, 18, 477594),
|
|
max_length=254,
|
|
verbose_name="email address",
|
|
),
|
|
preserve_default=False,
|
|
),
|
|
]
|