diff options
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 |
commit | 55270f2f3be966f0454968434bcb9a04617fbe6d (patch) | |
tree | e207b3674fd5a2089047ff6a82032f6010023ecb /archaeological_context_records/migrations | |
parent | 1dabbc89e9366c53ebd0c9efda4dc6a2e34db75e (diff) | |
download | Ishtar-55270f2f3be966f0454968434bcb9a04617fbe6d.tar.bz2 Ishtar-55270f2f3be966f0454968434bcb9a04617fbe6d.zip |
Document model: add history to documents
Diffstat (limited to 'archaeological_context_records/migrations')
-rw-r--r-- | archaeological_context_records/migrations/0037_auto_20190118_1203.py | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/archaeological_context_records/migrations/0037_auto_20190118_1203.py b/archaeological_context_records/migrations/0037_auto_20190118_1203.py new file mode 100644 index 000000000..a9e0b6da0 --- /dev/null +++ b/archaeological_context_records/migrations/0037_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_context_records', '0036_auto_20190111_1755'), + ] + + operations = [ + migrations.AlterField( + model_name='contextrecord', + name='relation_image', + field=models.FileField(blank=True, help_text='The maximum supported file size is 100 Mo.', null=True, upload_to=ishtar_common.models.get_image_path, verbose_name='Image des relations (SVG g\xe9n\xe9r\xe9)'), + ), + migrations.AlterField( + model_name='historicalcontextrecord', + name='relation_image', + field=models.TextField(blank=True, help_text='The maximum supported file size is 100 Mo.', max_length=100, null=True, verbose_name='Image des relations (SVG g\xe9n\xe9r\xe9)'), + ), + ] |