diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2020-11-18 16:46:37 +0100 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2021-02-28 12:15:21 +0100 |
commit | b27fabdea6c6bfba75521dc84f5a321e61e6ef52 (patch) | |
tree | 2b4452bc7fec7de7a90e81d9055a8b9971b18c5c /ishtar_common/migrations/0207_auto_20201118_1210.py | |
parent | 4fa501cb189c61d94a2ca53a604f3db7a212153c (diff) | |
download | Ishtar-b27fabdea6c6bfba75521dc84f5a321e61e6ef52.tar.bz2 Ishtar-b27fabdea6c6bfba75521dc84f5a321e61e6ef52.zip |
Complex index generation with JINJA2 templates
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, 80 insertions, 0 deletions
diff --git a/ishtar_common/migrations/0207_auto_20201118_1210.py b/ishtar_common/migrations/0207_auto_20201118_1210.py new file mode 100644 index 000000000..343577182 --- /dev/null +++ b/ishtar_common/migrations/0207_auto_20201118_1210.py @@ -0,0 +1,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'), + ), + ] |