mirror of
https://github.com/lemeow125/DocManagerBackend.git
synced 2025-01-31 15:28:08 +08:00
19 lines
394 B
Python
19 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),
|
||
|
),
|
||
|
]
|