diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2017-10-12 13:17:17 +0200 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2017-10-12 13:17:17 +0200 |
commit | d658fbb5b55c6ce318383b535732763e810b6537 (patch) | |
tree | 7d3f57ec13a117bbbaa8cd9e5117b2478456cd0f /archaeological_operations/migrations | |
parent | 0c75a8c1300338ce0a03d3a1bb57959f48eaaf1a (diff) | |
download | Ishtar-d658fbb5b55c6ce318383b535732763e810b6537.tar.bz2 Ishtar-d658fbb5b55c6ce318383b535732763e810b6537.zip |
Performance: add indexes for cached labels
Diffstat (limited to 'archaeological_operations/migrations')
-rw-r--r-- | archaeological_operations/migrations/0010_auto_20171012_1316.py | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/archaeological_operations/migrations/0010_auto_20171012_1316.py b/archaeological_operations/migrations/0010_auto_20171012_1316.py new file mode 100644 index 000000000..3a847a803 --- /dev/null +++ b/archaeological_operations/migrations/0010_auto_20171012_1316.py @@ -0,0 +1,25 @@ +# -*- coding: utf-8 -*- +# Generated by Django 1.11 on 2017-10-12 13:16 +from __future__ import unicode_literals + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('archaeological_operations', '0009_auto_20171011_1644'), + ] + + operations = [ + migrations.AlterField( + model_name='historicaloperation', + name='cached_label', + field=models.CharField(blank=True, db_index=True, max_length=500, null=True, verbose_name='Cached name'), + ), + migrations.AlterField( + model_name='operation', + name='cached_label', + field=models.CharField(blank=True, db_index=True, max_length=500, null=True, verbose_name='Cached name'), + ), + ] |