Skip to content

Commit

Permalink
Adds migration for privacy field
Browse files Browse the repository at this point in the history
no actual change here, but it's a new field type
  • Loading branch information
mouse-reeve committed Dec 14, 2020
1 parent a7ee461 commit 61041a0
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions bookwyrm/migrations/0023_auto_20201214_0511.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# Generated by Django 3.0.7 on 2020-12-14 05:11

import bookwyrm.models.fields
from django.db import migrations


class Migration(migrations.Migration):

dependencies = [
('bookwyrm', '0022_auto_20201212_1744'),
]

operations = [
migrations.AlterField(
model_name='status',
name='privacy',
field=bookwyrm.models.fields.PrivacyField(choices=[('public', 'Public'), ('unlisted', 'Unlisted'), ('followers', 'Followers'), ('direct', 'Direct')], default='public', max_length=255),
),
]

0 comments on commit 61041a0

Please sign in to comment.