mirror of
https://github.com/bookwyrm-social/bookwyrm.git
synced 2025-01-08 00:05:30 +00:00
19 lines
430 B
Python
19 lines
430 B
Python
# Generated by Django 3.1.6 on 2021-03-21 21:44
|
|
|
|
import bookwyrm.models.fields
|
|
from django.db import migrations
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
("bookwyrm", "0056_auto_20210321_0303"),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name="user",
|
|
name="discoverable",
|
|
field=bookwyrm.models.fields.BooleanField(default=False),
|
|
),
|
|
]
|