diff options
| author | 2019-09-24 13:54:40 -0400 | |
|---|---|---|
| committer | 2019-09-24 13:54:40 -0400 | |
| commit | 20b19de0d22e33476ac082ea048476f9f8c1a5ed (patch) | |
| tree | f1541776183c3d3850693ad20d81fb530bed3a1d /pydis_site/apps/api/migrations | |
| parent | Apply suggestions from code review (diff) | |
| parent | Swap out old discord shield for new one. (diff) | |
Merge branch 'master' into update-linting
Diffstat (limited to 'pydis_site/apps/api/migrations')
| -rw-r--r-- | pydis_site/apps/api/migrations/0042_infraction_add_default_ordering.py | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/pydis_site/apps/api/migrations/0042_infraction_add_default_ordering.py b/pydis_site/apps/api/migrations/0042_infraction_add_default_ordering.py new file mode 100644 index 00000000..1a0dbb34 --- /dev/null +++ b/pydis_site/apps/api/migrations/0042_infraction_add_default_ordering.py @@ -0,0 +1,17 @@ +# Generated by Django 2.2.3 on 2019-09-17 14:07 + +from django.db import migrations + + +class Migration(migrations.Migration): + + dependencies = [ + ('api', '0041_add_default_ordering_deleted_messages'), + ] + + operations = [ + migrations.AlterModelOptions( + name='infraction', + options={'ordering': ['-inserted_at']}, + ), + ] |