1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
|
# -*- coding: utf-8 -*-
# Generated by Django 1.11.10 on 2019-01-18 12:03
from __future__ import unicode_literals
from django.conf import settings
import django.contrib.postgres.fields.jsonb
from django.db import migrations, models
import django.db.models.deletion
import ishtar_common.models
class Migration(migrations.Migration):
dependencies = [
migrations.swappable_dependency(settings.AUTH_USER_MODEL),
('ishtar_common', '0081_recreate_m2m_history'),
]
operations = [
migrations.AddField(
model_name='document',
name='data',
field=django.contrib.postgres.fields.jsonb.JSONField(blank=True, db_index=True, default={}),
),
migrations.AddField(
model_name='document',
name='history_creator',
field=models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.SET_NULL, related_name='+', to=settings.AUTH_USER_MODEL, verbose_name='Cr\xe9ateur'),
),
migrations.AddField(
model_name='document',
name='history_m2m',
field=django.contrib.postgres.fields.jsonb.JSONField(blank=True, default={}),
),
migrations.AddField(
model_name='document',
name='history_modifier',
field=models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.SET_NULL, related_name='+', to=settings.AUTH_USER_MODEL, verbose_name='Dernier \xe9diteur'),
),
migrations.AddField(
model_name='document',
name='last_modified',
field=models.DateTimeField(auto_now=True),
),
migrations.AddField(
model_name='ishtarsiteprofile',
name='document_external_id',
field=models.TextField(default='{index}', help_text='Formula to manage document external ID. Change this with care. With incorrect formula, the application might be unusable and import of external data can be destructive.', verbose_name='Document external id'),
),
migrations.AlterField(
model_name='document',
name='associated_file',
field=models.FileField(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='document',
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='document',
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),
),
migrations.AlterField(
model_name='documenttemplate',
name='template',
field=models.FileField(help_text='The maximum supported file size is 100 Mo.', upload_to=b'templates/%Y/', verbose_name='Patron'),
),
migrations.AlterField(
model_name='import',
name='error_file',
field=models.FileField(blank=True, help_text='The maximum supported file size is 100 Mo.', max_length=255, null=True, upload_to=b'upload/imports/%Y/%m/', verbose_name='Fichier erreur'),
),
migrations.AlterField(
model_name='import',
name='imported_file',
field=models.FileField(help_text='The maximum supported file size is 100 Mo.', max_length=220, upload_to=b'upload/imports/%Y/%m/', verbose_name='Fichier import\xe9'),
),
migrations.AlterField(
model_name='import',
name='imported_images',
field=models.FileField(blank=True, help_text='The maximum supported file size is 100 Mo.', max_length=220, null=True, upload_to=b'upload/imports/%Y/%m/', verbose_name='Images associ\xe9es (fichier zip)'),
),
migrations.AlterField(
model_name='import',
name='match_file',
field=models.FileField(blank=True, help_text='The maximum supported file size is 100 Mo.', max_length=255, null=True, upload_to=b'upload/imports/%Y/%m/', verbose_name='Fichier de correspondance'),
),
migrations.AlterField(
model_name='import',
name='result_file',
field=models.FileField(blank=True, help_text='The maximum supported file size is 100 Mo.', max_length=255, null=True, upload_to=b'upload/imports/%Y/%m/', verbose_name='Fichier r\xe9sultant'),
),
]
|