summaryrefslogtreecommitdiff
path: root/archaeological_finds/migrations/0056_auto_20190118_1203.py
diff options
context:
space:
mode:
Diffstat (limited to 'archaeological_finds/migrations/0056_auto_20190118_1203.py')
-rw-r--r--archaeological_finds/migrations/0056_auto_20190118_1203.py36
1 files changed, 0 insertions, 36 deletions
diff --git a/archaeological_finds/migrations/0056_auto_20190118_1203.py b/archaeological_finds/migrations/0056_auto_20190118_1203.py
deleted file mode 100644
index 554a934d1..000000000
--- a/archaeological_finds/migrations/0056_auto_20190118_1203.py
+++ /dev/null
@@ -1,36 +0,0 @@
-# -*- 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_finds', '0055_auto_20190111_1755'),
- ]
-
- operations = [
- migrations.AlterField(
- model_name='historicaltreatment',
- name='image',
- field=models.TextField(blank=True, help_text='The maximum supported file size is 100 Mo.', max_length=255, null=True),
- ),
- migrations.AlterField(
- model_name='historicaltreatment',
- name='thumbnail',
- field=models.TextField(blank=True, help_text='The maximum supported file size is 100 Mo.', max_length=255, null=True),
- ),
- migrations.AlterField(
- model_name='treatment',
- 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='treatment',
- 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),
- ),
- ]