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'}, + ), + ]