diff options
author | 2019-09-12 18:40:34 +0200 | |
---|---|---|
committer | 2019-09-12 18:40:34 +0200 | |
commit | f70bf55865b44251185efc38f7134efcb04dca11 (patch) | |
tree | bc19380030d90dd4b49eb677f0cf50ba42431be3 | |
parent | Merge pull request #241 from python-discord/fix-flake8-docstrings (diff) | |
parent | Add missing deleted messages migration file. (diff) |
Merge pull request #242 from python-discord/django-add-missing-migrations-file
Add missing migrations file for the deleted messages model
-rw-r--r-- | pydis_site/apps/api/migrations/0041_add_default_ordering_deleted_messages.py | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/pydis_site/apps/api/migrations/0041_add_default_ordering_deleted_messages.py b/pydis_site/apps/api/migrations/0041_add_default_ordering_deleted_messages.py new file mode 100644 index 00000000..a603bf4f --- /dev/null +++ b/pydis_site/apps/api/migrations/0041_add_default_ordering_deleted_messages.py @@ -0,0 +1,17 @@ +# Generated by Django 2.2.3 on 2019-09-12 16:13 + +from django.db import migrations + + +class Migration(migrations.Migration): + + dependencies = [ + ('api', '0040_allow_special_off_topic_name_chars'), + ] + + operations = [ + migrations.AlterModelOptions( + name='deletedmessage', + options={'ordering': ['id']}, + ), + ] |