From 41ef79557c2e01b71165968ee1cc0c1d8d95836e Mon Sep 17 00:00:00 2001 From: Valentin Deniaud Date: Tue, 13 Oct 2020 16:15:53 +0200 Subject: [PATCH] models: add missing migration (#47627) --- .../migrations/0029_auto_20201013_1614.py | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 src/authentic2/migrations/0029_auto_20201013_1614.py diff --git a/src/authentic2/migrations/0029_auto_20201013_1614.py b/src/authentic2/migrations/0029_auto_20201013_1614.py new file mode 100644 index 000000000..8edb34fd6 --- /dev/null +++ b/src/authentic2/migrations/0029_auto_20201013_1614.py @@ -0,0 +1,19 @@ +# -*- coding: utf-8 -*- +# Generated by Django 1.11.18 on 2020-10-13 14:14 +from __future__ import unicode_literals + +from django.db import migrations + + +class Migration(migrations.Migration): + + dependencies = [ + ('authentic2', '0028_trigram_unaccent_index'), + ] + + operations = [ + migrations.AlterModelOptions( + name='attributevalue', + options={'ordering': ('attribute__order', 'id'), 'verbose_name': 'attribute value', 'verbose_name_plural': 'attribute values'}, + ), + ]