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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
|
# -*- coding: utf-8 -*-
# Generated by Django 1.11.27 on 2020-11-26 15:16
from __future__ import unicode_literals
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('ishtar_common', '0207_auto_20201118_1210'),
]
operations = [
migrations.AddField(
model_name='format',
name='document_types',
field=models.ManyToManyField(blank=True, help_text='Only available for theses document types', related_name='formats', to='ishtar_common.SourceType'),
),
migrations.AddField(
model_name='supporttype',
name='document_types',
field=models.ManyToManyField(blank=True, help_text='Only available for theses document types', related_name='supports', to='ishtar_common.SourceType'),
),
migrations.AlterField(
model_name='document',
name='isbn',
field=models.CharField(blank=True, max_length=17, null=True, verbose_name='ISBN'),
),
migrations.AlterField(
model_name='document',
name='issn',
field=models.CharField(blank=True, max_length=10, null=True, verbose_name='ISSN'),
),
migrations.AlterField(
model_name='ishtarsiteprofile',
name='basefind_complete_identifier',
field=models.TextField(blank=True, default='', help_text='Formula to manage base find complete identifier.', verbose_name='Base find complete identifier'),
),
migrations.AlterField(
model_name='ishtarsiteprofile',
name='basefind_custom_index',
field=models.TextField(blank=True, default='', help_text='Key to be used to manage base find custom index. Separate keys with a semicolon.', verbose_name='Base find custom index key'),
),
migrations.AlterField(
model_name='ishtarsiteprofile',
name='container_complete_identifier',
field=models.TextField(blank=True, default='', help_text='Formula to manage container complete identifier.', verbose_name='Container complete identifier'),
),
migrations.AlterField(
model_name='ishtarsiteprofile',
name='container_custom_index',
field=models.TextField(blank=True, default='', help_text='Key to be used to manage container custom index. Separate keys with a semicolon.', verbose_name='Container custom index key'),
),
migrations.AlterField(
model_name='ishtarsiteprofile',
name='contextrecord_complete_identifier',
field=models.TextField(blank=True, default='', help_text='Formula to manage context record complete identifier.', verbose_name='Context record complete identifier'),
),
migrations.AlterField(
model_name='ishtarsiteprofile',
name='contextrecord_custom_index',
field=models.TextField(blank=True, default='', help_text='Key to be used to manage context record custom index. Separate keys with a semicolon.', verbose_name='Context record custom index key'),
),
migrations.AlterField(
model_name='ishtarsiteprofile',
name='document_complete_identifier',
field=models.TextField(blank=True, default='', help_text='Formula to manage document complete identifier.', verbose_name='Document complete identifier'),
),
migrations.AlterField(
model_name='ishtarsiteprofile',
name='document_custom_index',
field=models.TextField(blank=True, default='', help_text='Key to be used to manage document custom index. Separate keys with a semicolon.', verbose_name='Document custom index key'),
),
migrations.AlterField(
model_name='ishtarsiteprofile',
name='file_complete_identifier',
field=models.TextField(blank=True, default='', help_text='Formula to manage archaeological file complete identifier.', verbose_name='Archaeological file complete identifier'),
),
migrations.AlterField(
model_name='ishtarsiteprofile',
name='file_custom_index',
field=models.TextField(blank=True, default='', help_text='Key to be used to manage archaeological file custom index. Separate keys with a semicolon.', verbose_name='Archaeological file custom index key'),
),
migrations.AlterField(
model_name='ishtarsiteprofile',
name='find_complete_identifier',
field=models.TextField(blank=True, default='', help_text='Formula to manage find complete identifier.', verbose_name='Find complete identifier'),
),
migrations.AlterField(
model_name='ishtarsiteprofile',
name='find_custom_index',
field=models.TextField(blank=True, default='', help_text='Key to be used to manage find custom index. Separate keys with a semicolon.', verbose_name='Find custom index key'),
),
migrations.AlterField(
model_name='ishtarsiteprofile',
name='operation_complete_identifier',
field=models.TextField(blank=True, default='', help_text='Formula to manage operation complete identifier.', verbose_name='Operation complete identifier'),
),
migrations.AlterField(
model_name='ishtarsiteprofile',
name='operation_custom_index',
field=models.TextField(blank=True, default='', help_text='Keys to be used to manage operation custom index. Separate keys with a semicolon.', verbose_name='Operation custom index key'),
),
migrations.AlterField(
model_name='ishtarsiteprofile',
name='site_complete_identifier',
field=models.TextField(blank=True, default='', help_text='Formula to manage archaeological site complete identifier.', verbose_name='Archaeological site complete identifier'),
),
migrations.AlterField(
model_name='ishtarsiteprofile',
name='site_custom_index',
field=models.TextField(blank=True, default='', help_text='Key to be used to manage archaeological site custom index. Separate keys with a semicolon.', verbose_name='Archaeological site custom index key'),
),
migrations.AlterField(
model_name='ishtarsiteprofile',
name='warehouse_complete_identifier',
field=models.TextField(blank=True, default='', help_text='Formula to manage warehouse complete identifier.', verbose_name='Warehouse complete identifier'),
),
migrations.AlterField(
model_name='ishtarsiteprofile',
name='warehouse_custom_index',
field=models.TextField(blank=True, default='', help_text='Key to be used to manage warehouse custom index. Separate keys with a semicolon.', verbose_name='Warehouse custom index key'),
),
]
|