Adds books stream

This commit is contained in:
Mouse Reeve
2021-08-04 17:25:31 -07:00
parent a8d6dbd8a6
commit 5a9dbc50da
4 changed files with 44 additions and 8 deletions

View File

@ -0,0 +1,17 @@
# Generated by Django 3.2.4 on 2021-08-05 00:00
from django.db import migrations
class Migration(migrations.Migration):
dependencies = [
("bookwyrm", "0079_merge_20210804_1746"),
]
operations = [
migrations.AlterModelOptions(
name="shelfbook",
options={"ordering": ("-shelved_date", "-created_date", "-updated_date")},
),
]