mirror of
https://github.com/bookwyrm-social/bookwyrm.git
synced 2024-11-05 16:39:42 +00:00
19 lines
408 B
Python
19 lines
408 B
Python
|
# Generated by Django 3.0.3 on 2020-03-09 20:09
|
||
|
|
||
|
from django.db import migrations, models
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
dependencies = [
|
||
|
('fedireads', '0012_auto_20200308_1625'),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.AddField(
|
||
|
model_name='user',
|
||
|
name='manually_approves_followers',
|
||
|
field=models.BooleanField(default=False),
|
||
|
),
|
||
|
]
|