mirror of
https://github.com/daniviga/django-ram.git
synced 2025-08-04 13:17:50 +02:00
Fix bookshelf default sorting
This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
# Generated by Django 4.2.6 on 2023-10-09 21:08
|
||||
|
||||
from django.db import migrations
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
dependencies = [
|
||||
("bookshelf", "0007_alter_book_options"),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterModelOptions(
|
||||
name="author",
|
||||
options={"ordering": ["last_name", "first_name"]},
|
||||
),
|
||||
migrations.AlterModelOptions(
|
||||
name="publisher",
|
||||
options={"ordering": ["name"]},
|
||||
),
|
||||
]
|
Reference in New Issue
Block a user