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
|
# -*- coding: utf-8 -*-
# Generated by Django 1.11.27 on 2020-11-18 12:10
from __future__ import unicode_literals
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('ishtar_common', '0206_auto_20201110_1030'),
]
operations = [
migrations.RenameField(
model_name='ishtarsiteprofile',
old_name='context_record_complete_identifier',
new_name='contextrecord_complete_identifier',
),
migrations.AddField(
model_name='document',
name='custom_index',
field=models.IntegerField(blank=True, null=True, verbose_name='Custom index'),
),
migrations.AddField(
model_name='ishtarsiteprofile',
name='basefind_custom_index',
field=models.TextField(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.AddField(
model_name='ishtarsiteprofile',
name='container_custom_index',
field=models.TextField(default='', help_text='Key to be used to manage container custom index. Separate keys with a semicolon.', verbose_name='Container custom index key'),
),
migrations.AddField(
model_name='ishtarsiteprofile',
name='contextrecord_custom_index',
field=models.TextField(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.AddField(
model_name='ishtarsiteprofile',
name='document_custom_index',
field=models.TextField(default='', help_text='Key to be used to manage document custom index. Separate keys with a semicolon.', verbose_name='Document custom index key'),
),
migrations.AddField(
model_name='ishtarsiteprofile',
name='file_custom_index',
field=models.TextField(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.AddField(
model_name='ishtarsiteprofile',
name='find_custom_index',
field=models.TextField(default='', help_text='Key to be used to manage find custom index. Separate keys with a semicolon.', verbose_name='Find custom index key'),
),
migrations.AddField(
model_name='ishtarsiteprofile',
name='operation_custom_index',
field=models.TextField(default='', help_text='Keys to be used to manage operation custom index. Separate keys with a semicolon.', verbose_name='Operation custom index key'),
),
migrations.AddField(
model_name='ishtarsiteprofile',
name='site_custom_index',
field=models.TextField(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.AddField(
model_name='ishtarsiteprofile',
name='warehouse_custom_index',
field=models.TextField(default='', help_text='Key to be used to manage warehouse custom index. Separate keys with a semicolon.', verbose_name='Warehouse custom index key'),
),
migrations.AddField(
model_name='sourcetype',
name='code',
field=models.CharField(blank=True, default='', max_length=100, verbose_name='Code'),
),
migrations.AlterField(
model_name='sourcetype',
name='coins_genre',
field=models.CharField(blank=True, default='', max_length=100, verbose_name='COInS export - genre'),
),
]
|