forked from mirrors/bookwyrm
33 lines
1 KiB
Python
33 lines
1 KiB
Python
# Generated by Django 3.2.5 on 2021-11-17 18:01
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
("bookwyrm", "0117_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)"),
|
|
("gl-es", "Galego (Galician)"),
|
|
("fr-fr", "Français (French)"),
|
|
("lt-lt", "Lietuvių (Lithuanian)"),
|
|
("pt-br", "Português - Brasil (Brazilian Portuguese)"),
|
|
("zh-hans", "简体中文 (Simplified Chinese)"),
|
|
("zh-hant", "繁體中文 (Traditional Chinese)"),
|
|
],
|
|
max_length=255,
|
|
null=True,
|
|
),
|
|
),
|
|
]
|