Updates migration

This commit is contained in:
Mouse Reeve 2021-12-15 10:20:00 -08:00
parent a4859668b8
commit c6bdc34499

View file

@ -1,4 +1,4 @@
# Generated by Django 3.2.5 on 2021-10-07 22:53
# Generated by Django 3.2.5 on 2021-12-15 18:18
import bookwyrm.models.activitypub_mixin
import bookwyrm.models.fields
@ -9,7 +9,7 @@ import django.db.models.deletion
class Migration(migrations.Migration):
dependencies = [
("bookwyrm", "0106_user_preferred_language"),
("bookwyrm", "0120_list_embed_key"),
]
operations = [
@ -43,23 +43,6 @@ class Migration(migrations.Migration):
},
bases=(bookwyrm.models.activitypub_mixin.CollectionItemMixin, models.Model),
),
migrations.AlterField(
model_name="user",
name="preferred_language",
field=models.CharField(
blank=True,
choices=[
("en-us", "English"),
("de-de", "Deutsch (German)"),
("es", "Español (Spanish)"),
("fr-fr", "Français (French)"),
("zh-hans", "简体中文 (Simplified Chinese)"),
("zh-hant", "繁體中文 (Traditional Chinese)"),
],
max_length=255,
null=True,
),
),
migrations.CreateModel(
name="FileLink",
fields=[