summaryrefslogtreecommitdiff
path: root/chimere/migrations/0006_auto_20170724_0115.py
diff options
context:
space:
mode:
authorÉtienne Loks <etienne.loks@iggdrasil.net>2017-07-24 01:19:38 +0200
committerÉtienne Loks <etienne.loks@iggdrasil.net>2017-07-24 01:19:38 +0200
commit412f474c2154731d9ba9f46f89f96dedba402418 (patch)
tree8e58a966dbf43f064694376c7a68999153f64bd9 /chimere/migrations/0006_auto_20170724_0115.py
parent4a361bad1d0ff12f4df72887ad05fd8b4557590e (diff)
downloadChimère-412f474c2154731d9ba9f46f89f96dedba402418.tar.bz2
Chimère-412f474c2154731d9ba9f46f89f96dedba402418.zip
Add description to polygon and routes (refs #3440)
Diffstat (limited to 'chimere/migrations/0006_auto_20170724_0115.py')
-rw-r--r--chimere/migrations/0006_auto_20170724_0115.py24
1 files changed, 24 insertions, 0 deletions
diff --git a/chimere/migrations/0006_auto_20170724_0115.py b/chimere/migrations/0006_auto_20170724_0115.py
new file mode 100644
index 0000000..bd31328
--- /dev/null
+++ b/chimere/migrations/0006_auto_20170724_0115.py
@@ -0,0 +1,24 @@
+# -*- coding: utf-8 -*-
+from __future__ import unicode_literals
+
+from django.db import migrations, models
+
+
+class Migration(migrations.Migration):
+
+ dependencies = [
+ ('chimere', '0005_auto_20170305_1704'),
+ ]
+
+ operations = [
+ migrations.AddField(
+ model_name='polygon',
+ name='description',
+ field=models.TextField(blank=True, verbose_name='Description', null=True),
+ ),
+ migrations.AddField(
+ model_name='route',
+ name='description',
+ field=models.TextField(blank=True, verbose_name='Description', null=True),
+ ),
+ ]