mirror of
https://github.com/1Panel-dev/MaxKB.git
synced 2025-12-26 01:33:05 +00:00
19 lines
436 B
Python
19 lines
436 B
Python
# Generated by Django 4.2.13 on 2024-07-16 17:03
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('users', '0003_user_source'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='user',
|
|
name='email',
|
|
field=models.EmailField(blank=True, max_length=254, null=True, unique=True, verbose_name='邮箱'),
|
|
),
|
|
]
|