summaryrefslogtreecommitdiff
path: root/archaeological_warehouse/migrations
diff options
context:
space:
mode:
authorÉtienne Loks <etienne.loks@iggdrasil.net>2019-01-18 12:04:59 +0100
committerÉtienne Loks <etienne.loks@iggdrasil.net>2019-01-18 12:04:59 +0100
commitee7fc010ac934c017fc1396d566d139755980f17 (patch)
treee207b3674fd5a2089047ff6a82032f6010023ecb /archaeological_warehouse/migrations
parentcd1d2c3d612d3141e7b5ce37167bfe162df5abfc (diff)
downloadIshtar-ee7fc010ac934c017fc1396d566d139755980f17.tar.bz2
Ishtar-ee7fc010ac934c017fc1396d566d139755980f17.zip
Document model: add history to documents
Diffstat (limited to 'archaeological_warehouse/migrations')
-rw-r--r--archaeological_warehouse/migrations/0030_auto_20190118_1203.py26
1 files changed, 26 insertions, 0 deletions
diff --git a/archaeological_warehouse/migrations/0030_auto_20190118_1203.py b/archaeological_warehouse/migrations/0030_auto_20190118_1203.py
new file mode 100644
index 000000000..e6d1f0c17
--- /dev/null
+++ b/archaeological_warehouse/migrations/0030_auto_20190118_1203.py
@@ -0,0 +1,26 @@
+# -*- coding: utf-8 -*-
+# Generated by Django 1.11.10 on 2019-01-18 12:03
+from __future__ import unicode_literals
+
+from django.db import migrations, models
+import ishtar_common.models
+
+
+class Migration(migrations.Migration):
+
+ dependencies = [
+ ('archaeological_warehouse', '0029_auto_20190111_1755'),
+ ]
+
+ operations = [
+ migrations.AlterField(
+ model_name='container',
+ name='image',
+ field=models.ImageField(blank=True, help_text='The maximum supported file size is 100 Mo.', max_length=255, null=True, upload_to=ishtar_common.models.get_image_path),
+ ),
+ migrations.AlterField(
+ model_name='container',
+ name='thumbnail',
+ field=models.ImageField(blank=True, help_text='The maximum supported file size is 100 Mo.', max_length=255, null=True, upload_to=ishtar_common.models.get_image_path),
+ ),
+ ]