forked from mirrors/bookwyrm
19 lines
515 B
Python
19 lines
515 B
Python
|
# Generated by Django 3.0.7 on 2020-10-26 21:31
|
||
|
|
||
|
from django.db import migrations, models
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
dependencies = [
|
||
|
('bookwyrm', '0056_auto_20201021_0150'),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.AlterField(
|
||
|
model_name='status',
|
||
|
name='privacy',
|
||
|
field=models.CharField(choices=[('public', 'Public'), ('unlisted', 'Unlisted'), ('followers', 'Followers'), ('direct', 'Direct')], default='public', max_length=255),
|
||
|
),
|
||
|
]
|