From 9d2b7ff77cdfc5a972562370de2d97cee926fbd0 Mon Sep 17 00:00:00 2001 From: Kuroshini Date: Wed, 11 Dec 2019 19:18:04 +0300 Subject: [PATCH] add migration --- .../migrations/0007_auto_20191211_1528.py | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 apps/gallery/migrations/0007_auto_20191211_1528.py diff --git a/apps/gallery/migrations/0007_auto_20191211_1528.py b/apps/gallery/migrations/0007_auto_20191211_1528.py new file mode 100644 index 00000000..714ef664 --- /dev/null +++ b/apps/gallery/migrations/0007_auto_20191211_1528.py @@ -0,0 +1,17 @@ +# Generated by Django 2.2.7 on 2019-12-11 15:28 + +from django.db import migrations + + +class Migration(migrations.Migration): + + dependencies = [ + ('gallery', '0006_merge_20191027_1758'), + ] + + operations = [ + migrations.AlterModelOptions( + name='image', + options={'ordering': ['-modified'], 'verbose_name': 'Image', 'verbose_name_plural': 'Images'}, + ), + ]