26 lines
633 B
Python
26 lines
633 B
Python
|
|
# Generated by Django 5.1.15 on 2026-03-23 18:48
|
||
|
|
|
||
|
|
import account.models
|
||
|
|
from django.db import migrations, models
|
||
|
|
|
||
|
|
|
||
|
|
class Migration(migrations.Migration):
|
||
|
|
|
||
|
|
dependencies = [
|
||
|
|
('account', '0001_initial'),
|
||
|
|
]
|
||
|
|
|
||
|
|
operations = [
|
||
|
|
migrations.AlterModelManagers(
|
||
|
|
name='user',
|
||
|
|
managers=[
|
||
|
|
('objects', account.models.CustomUserManager()),
|
||
|
|
],
|
||
|
|
),
|
||
|
|
migrations.AlterField(
|
||
|
|
model_name='user',
|
||
|
|
name='email',
|
||
|
|
field=models.EmailField(db_index=True, max_length=254, unique=True, verbose_name='email address'),
|
||
|
|
),
|
||
|
|
]
|