UPDATE AUTH
This commit is contained in:
@@ -0,0 +1,25 @@
|
||||
# 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'),
|
||||
),
|
||||
]
|
||||
Reference in New Issue
Block a user