summaryrefslogtreecommitdiff
path: root/ishtar_common/migrations/0065_author_cached_label.py
diff options
context:
space:
mode:
authorÉtienne Loks <etienne.loks@iggdrasil.net>2018-08-14 16:57:48 +0200
committerÉtienne Loks <etienne.loks@iggdrasil.net>2018-08-14 16:57:48 +0200
commit7bff3eb7ca6e7ea59be77e0bd0d0471a5f8ff97a (patch)
tree8ccbb16c38a59cf640b490e1d1f5e4b40fa3abe6 /ishtar_common/migrations/0065_author_cached_label.py
parentfbd17f27b6a7eeaf8d85ba72cf535dad8c0cc5f1 (diff)
downloadIshtar-7bff3eb7ca6e7ea59be77e0bd0d0471a5f8ff97a.tar.bz2
Ishtar-7bff3eb7ca6e7ea59be77e0bd0d0471a5f8ff97a.zip
Container - warehouse form configuration - cache precise localisation
Diffstat (limited to 'ishtar_common/migrations/0065_author_cached_label.py')
-rw-r--r--ishtar_common/migrations/0065_author_cached_label.py20
1 files changed, 20 insertions, 0 deletions
diff --git a/ishtar_common/migrations/0065_author_cached_label.py b/ishtar_common/migrations/0065_author_cached_label.py
new file mode 100644
index 000000000..adaaed9fa
--- /dev/null
+++ b/ishtar_common/migrations/0065_author_cached_label.py
@@ -0,0 +1,20 @@
+# -*- coding: utf-8 -*-
+# Generated by Django 1.11.10 on 2018-08-14 15:53
+from __future__ import unicode_literals
+
+from django.db import migrations, models
+
+
+class Migration(migrations.Migration):
+
+ dependencies = [
+ ('ishtar_common', '0064_auto_20180808_1116'),
+ ]
+
+ operations = [
+ migrations.AddField(
+ model_name='author',
+ name='cached_label',
+ field=models.TextField(blank=True, db_index=True, null=True, verbose_name='Cached name'),
+ ),
+ ]