moviewyrm/bookwyrm/migrations/0009_shelf_privacy.py

28 lines
676 B
Python
Raw Normal View History

2020-11-10 21:39:58 +00:00
# Generated by Django 3.0.7 on 2020-11-10 20:53
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
2021-03-08 16:49:10 +00:00
("bookwyrm", "0008_work_default_edition"),
2020-11-10 21:39:58 +00:00
]
operations = [
migrations.AddField(
2021-03-08 16:49:10 +00:00
model_name="shelf",
name="privacy",
field=models.CharField(
choices=[
("public", "Public"),
("unlisted", "Unlisted"),
("followers", "Followers"),
("direct", "Direct"),
],
default="public",
max_length=255,
),
2020-11-10 21:39:58 +00:00
),
]