diff options
Diffstat (limited to 'ishtar_common/migrations/0207_auto_20201118_1210.py')
-rw-r--r-- | ishtar_common/migrations/0207_auto_20201118_1210.py | 80 |
1 files changed, 0 insertions, 80 deletions
diff --git a/ishtar_common/migrations/0207_auto_20201118_1210.py b/ishtar_common/migrations/0207_auto_20201118_1210.py deleted file mode 100644 index 343577182..000000000 --- a/ishtar_common/migrations/0207_auto_20201118_1210.py +++ /dev/null @@ -1,80 +0,0 @@ -# -*- 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'), - ), - ] |