20 lines
482 B
Python
20 lines
482 B
Python
# Generated by Django 5.2.6 on 2025-12-30 09:23
|
|
|
|
import at_django_boilerplate.utils.custom_fields
|
|
from django.db import migrations
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('accounts', '0001_initial'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='customuser',
|
|
name='email',
|
|
field=at_django_boilerplate.utils.custom_fields.EncryptedSearchableTextField(blank=True, null=True),
|
|
),
|
|
]
|