Create missing attachment migration

This commit is contained in:
Gabriel Augendre 2020-09-03 21:17:05 +02:00
parent e247f15797
commit 63db5aa0ea
No known key found for this signature in database
GPG key ID: 1E693F4CE4AEE7B4

View file

@ -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"]},
),
]