Adds ordering to status model
This commit is contained in:
parent
a67b0ae8a7
commit
1707bba8a8
2 changed files with 21 additions and 0 deletions
17
bookwyrm/migrations/0058_auto_20210324_1536.py
Normal file
17
bookwyrm/migrations/0058_auto_20210324_1536.py
Normal file
|
@ -0,0 +1,17 @@
|
|||
# Generated by Django 3.1.6 on 2021-03-24 15:36
|
||||
|
||||
from django.db import migrations
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('bookwyrm', '0057_user_discoverable'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterModelOptions(
|
||||
name='status',
|
||||
options={'ordering': ('-published_date',)},
|
||||
),
|
||||
]
|
Loading…
Add table
Add a link
Reference in a new issue