forked from mirrors/bookwyrm
32 lines
957 B
Python
32 lines
957 B
Python
|
# Generated by Django 3.2.5 on 2021-10-11 17:38
|
||
|
|
||
|
from django.db import migrations, models
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
dependencies = [
|
||
|
("bookwyrm", "0107_alter_user_preferred_language"),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.AlterField(
|
||
|
model_name="user",
|
||
|
name="preferred_language",
|
||
|
field=models.CharField(
|
||
|
blank=True,
|
||
|
choices=[
|
||
|
("en-us", "English"),
|
||
|
("de-de", "Deutsch (German)"),
|
||
|
("es-es", "Español (Spanish)"),
|
||
|
("fr-fr", "Français (French)"),
|
||
|
("pt-br", "Português - Brasil (Brazilian Portuguese)"),
|
||
|
("zh-hans", "简体中文 (Simplified Chinese)"),
|
||
|
("zh-hant", "繁體中文 (Traditional Chinese)"),
|
||
|
],
|
||
|
max_length=255,
|
||
|
null=True,
|
||
|
),
|
||
|
),
|
||
|
]
|