mirror of
https://github.com/lemeow125/DocManagerBackend.git
synced 2025-01-19 09:33:01 +08:00
18 lines
394 B
Python
18 lines
394 B
Python
# Generated by Django 5.1.3 on 2024-11-23 13:36
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
("accounts", "0001_initial"),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name="customuser",
|
|
name="email",
|
|
field=models.EmailField(max_length=254, unique=True),
|
|
),
|
|
]
|