From 63db5aa0eaf5bb45697a165ff86f89956677530d Mon Sep 17 00:00:00 2001 From: Gabriel Augendre Date: Thu, 3 Sep 2020 21:17:05 +0200 Subject: [PATCH] Create missing attachment migration --- .../migrations/0004_auto_20200903_2116.py | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 attachments/migrations/0004_auto_20200903_2116.py diff --git a/attachments/migrations/0004_auto_20200903_2116.py b/attachments/migrations/0004_auto_20200903_2116.py new file mode 100644 index 0000000..f059f12 --- /dev/null +++ b/attachments/migrations/0004_auto_20200903_2116.py @@ -0,0 +1,16 @@ +# Generated by Django 3.1 on 2020-09-03 19:16 + +from django.db import migrations + + +class Migration(migrations.Migration): + + dependencies = [ + ("attachments", "0003_auto_20200826_1843"), + ] + + operations = [ + migrations.AlterModelOptions( + name="attachment", options={"ordering": ["description"]}, + ), + ]