bookwyrm/bookwyrm/migrations/0042_auto_20210201_2108.py

47 lines
1.3 KiB
Python
Raw Normal View History

2021-02-02 17:41:24 +00:00
# Generated by Django 3.0.7 on 2021-02-01 21:08
import bookwyrm.models.fields
from django.db import migrations
class Migration(migrations.Migration):
dependencies = [
2021-03-08 16:49:10 +00:00
("bookwyrm", "0041_auto_20210131_1614"),
2021-02-02 17:41:24 +00:00
]
operations = [
migrations.AlterModelOptions(
2021-03-08 16:49:10 +00:00
name="list",
options={"ordering": ("-updated_date",)},
2021-02-02 17:41:24 +00:00
),
migrations.AlterField(
2021-03-08 16:49:10 +00:00
model_name="list",
name="privacy",
field=bookwyrm.models.fields.PrivacyField(
choices=[
("public", "Public"),
("unlisted", "Unlisted"),
("followers", "Followers"),
("direct", "Direct"),
],
default="public",
max_length=255,
),
2021-02-02 17:41:24 +00:00
),
migrations.AlterField(
2021-03-08 16:49:10 +00:00
model_name="shelf",
name="privacy",
field=bookwyrm.models.fields.PrivacyField(
choices=[
("public", "Public"),
("unlisted", "Unlisted"),
("followers", "Followers"),
("direct", "Direct"),
],
default="public",
max_length=255,
),
2021-02-02 17:41:24 +00:00
),
]