-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
bplan/serializer: fix sentry errors and a warning
sentry: https://sentry.liqd.net/organizations/liqd/issues/1476/?project=24 https://sentry.liqd.net/organizations/liqd/issues/1477/?project=24 warning: `UnorderedObjectListWarning: Pagination may yield inconsistent results with an unordered object_list: <class bplan.models.BPlan> QuerySet.`
- Loading branch information
1 parent
8562c11
commit d298b7c
Showing
4 changed files
with
20 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
# Generated by Django 2.2.20 on 2021-06-07 11:52 | ||
|
||
from django.db import migrations | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('bplan', '0005_remove_old_fields_from_bplan_model'), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterModelOptions( | ||
name='bplan', | ||
options={'ordering': ['id']}, | ||
), | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters