Skip to content

Commit

Permalink
Fix that jazzband#871 was not rebased on latest
Browse files Browse the repository at this point in the history
  • Loading branch information
jeking3 committed Oct 7, 2021
1 parent acf47b7 commit 0e0a92a
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ class Migration(migrations.Migration):
migrations.swappable_dependency(settings.AUTH_USER_MODEL),
(
"migration_test_app",
"0002_historicalmodelwithcustomattrforeignkey_modelwithcustomattrforeignkey",
"0004_history_date_indexing",
),
]

Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# Generated by Django 4.1.dev20211006030854 on 2021-10-07 13:51

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
('migration_test_app', '0005_historicalmodelwithcustomattronetoonefield_modelwithcustomattronetoonefield'),
]

operations = [
migrations.AlterModelOptions(
name='historicalmodelwithcustomattronetoonefield',
options={'get_latest_by': ('history_date', 'history_id'), 'ordering': ('-history_date', '-history_id'), 'verbose_name': 'historical model with custom attr one to one field'},
),
migrations.AlterField(
model_name='historicalmodelwithcustomattronetoonefield',
name='history_date',
field=models.DateTimeField(db_index=True),
),
]

0 comments on commit 0e0a92a

Please sign in to comment.