mirror of
https://github.com/daniviga/django-ram.git
synced 2025-08-04 21:27:49 +02:00
18 lines
343 B
Python
18 lines
343 B
Python
# Generated by Django 4.2.5 on 2023-10-03 21:07
|
|
|
|
from django.db import migrations
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
("bookshelf", "0006_alter_book_isbn"),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterModelOptions(
|
|
name="book",
|
|
options={"ordering": ["title"]},
|
|
),
|
|
]
|