forked from mirrors/bookwyrm
27 lines
676 B
Python
27 lines
676 B
Python
# Generated by Django 3.0.7 on 2020-11-10 20:53
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
("bookwyrm", "0008_work_default_edition"),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name="shelf",
|
|
name="privacy",
|
|
field=models.CharField(
|
|
choices=[
|
|
("public", "Public"),
|
|
("unlisted", "Unlisted"),
|
|
("followers", "Followers"),
|
|
("direct", "Direct"),
|
|
],
|
|
default="public",
|
|
max_length=255,
|
|
),
|
|
),
|
|
]
|