summaryrefslogtreecommitdiff
path: root/ishtar_common/migrations/0207_auto_20201117_1021.py
blob: bd6d970fe3db6d3f0757b4455841e0c82803ec8e (plain)
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
# -*- coding: utf-8 -*-
# Generated by Django 1.11.27 on 2020-11-17 10:21
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.', 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.', 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.', 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.', 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.', 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.', verbose_name='Find custom index key'),
        ),
        migrations.AddField(
            model_name='ishtarsiteprofile',
            name='operation_custom_index',
            field=models.TextField(default='', help_text='Key to be used to manage operation custom index.', 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.', 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.', verbose_name='Warehouse custom index key'),
        ),
    ]