19 lines
405 B
Python
19 lines
405 B
Python
|
# Generated by Django 4.2.17 on 2025-02-02 12:33
|
||
|
|
||
|
from django.db import migrations, models
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
dependencies = [
|
||
|
('accounts', '0002_remove_user_updated_at'),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.AlterField(
|
||
|
model_name='user',
|
||
|
name='username',
|
||
|
field=models.CharField(max_length=64, unique=True),
|
||
|
),
|
||
|
]
|