mirror of
https://github.com/1Panel-dev/MaxKB.git
synced 2025-12-26 10:12:51 +00:00
18 lines
428 B
Python
18 lines
428 B
Python
# Generated by Django 4.2.15 on 2025-01-20 06:59
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
dependencies = [
|
|
('users', '0004_alter_user_email'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='user',
|
|
name='language',
|
|
field=models.CharField(default=None, null=True, max_length=10, verbose_name='语言'),
|
|
),
|
|
]
|