# -*- 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'), ), ]