blob: 14d470f9a7e0b46b4cce9c8d53301bd312358491 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# Generated by Django 3.1 on 2020-12-18 09:50
from django.db import migrations
class Migration(migrations.Migration):
dependencies = [
('books', '0013_auto_20201218_0949'),
]
operations = [
migrations.AlterModelOptions(
name='bookhighlight',
options={'get_latest_by': 'date_added', 'ordering': ('-date_highlighted', '-page')},
),
migrations.RenameField(
model_name='bookhighlight',
old_name='date_added',
new_name='date_created',
),
]
|