summaryrefslogtreecommitdiff
path: root/ishtar_common/migrations/0057_document_cache_related_label.py
diff options
context:
space:
mode:
authorÉtienne Loks <etienne.loks@iggdrasil.net>2018-06-04 16:41:41 +0200
committerÉtienne Loks <etienne.loks@iggdrasil.net>2018-06-12 09:57:24 +0200
commite7418c19b122c5ac0505ad2be5350068d3bf6f6b (patch)
tree735cd414c9dd45334a08f5e8c93224257548aa53 /ishtar_common/migrations/0057_document_cache_related_label.py
parent202fb132953d115c2b1983f5f50d2f4b62bb9d5d (diff)
downloadIshtar-e7418c19b122c5ac0505ad2be5350068d3bf6f6b.tar.bz2
Ishtar-e7418c19b122c5ac0505ad2be5350068d3bf6f6b.zip
Rebase migrations
Diffstat (limited to 'ishtar_common/migrations/0057_document_cache_related_label.py')
-rw-r--r--ishtar_common/migrations/0057_document_cache_related_label.py20
1 files changed, 20 insertions, 0 deletions
diff --git a/ishtar_common/migrations/0057_document_cache_related_label.py b/ishtar_common/migrations/0057_document_cache_related_label.py
new file mode 100644
index 000000000..61a8ea329
--- /dev/null
+++ b/ishtar_common/migrations/0057_document_cache_related_label.py
@@ -0,0 +1,20 @@
+# -*- coding: utf-8 -*-
+# Generated by Django 1.11.10 on 2018-06-04 11:52
+from __future__ import unicode_literals
+
+from django.db import migrations, models
+
+
+class Migration(migrations.Migration):
+
+ dependencies = [
+ ('ishtar_common', '0056_auto_20180601_1555'),
+ ]
+
+ operations = [
+ migrations.AddField(
+ model_name='document',
+ name='cache_related_label',
+ field=models.TextField(blank=True, db_index=True, help_text='Cached value - do not edit', null=True, verbose_name='Related'),
+ ),
+ ]