summaryrefslogtreecommitdiff
path: root/ishtar_common/migrations
diff options
context:
space:
mode:
authorÉtienne Loks <etienne.loks@iggdrasil.net>2021-01-05 17:18:33 +0100
committerÉtienne Loks <etienne.loks@iggdrasil.net>2021-02-28 12:15:23 +0100
commitced826479a1ce9b7b231376ce55dba0632d8df89 (patch)
tree5e1a23b6caa2be94919010e68c130086231c8d6b /ishtar_common/migrations
parentd319e01c50deeba74674b9e0a6389f3637ce154a (diff)
downloadIshtar-ced826479a1ce9b7b231376ce55dba0632d8df89.tar.bz2
Ishtar-ced826479a1ce9b7b231376ce55dba0632d8df89.zip
Document: add publishing year
Diffstat (limited to 'ishtar_common/migrations')
-rw-r--r--ishtar_common/migrations/0209_auto_20210105_1712.py60
1 files changed, 60 insertions, 0 deletions
diff --git a/ishtar_common/migrations/0209_auto_20210105_1712.py b/ishtar_common/migrations/0209_auto_20210105_1712.py
new file mode 100644
index 000000000..1e5cd54a1
--- /dev/null
+++ b/ishtar_common/migrations/0209_auto_20210105_1712.py
@@ -0,0 +1,60 @@
+# -*- coding: utf-8 -*-
+# Generated by Django 1.11.27 on 2021-01-05 17:12
+from __future__ import unicode_literals
+
+from django.db import migrations, models
+
+
+class Migration(migrations.Migration):
+
+ dependencies = [
+ ('ishtar_common', '0208_unaccent'),
+ ]
+
+ operations = [
+ migrations.AddField(
+ model_name='document',
+ name='publishing_year',
+ field=models.PositiveIntegerField(blank=True, null=True, verbose_name='Year of publication'),
+ ),
+ migrations.AlterField(
+ model_name='ishtarsiteprofile',
+ name='basefind_custom_index',
+ field=models.TextField(blank=True, default='', help_text='Keys 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_custom_index',
+ field=models.TextField(blank=True, default='', help_text='Keys 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_custom_index',
+ field=models.TextField(blank=True, default='', help_text='Keys 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_custom_index',
+ field=models.TextField(blank=True, default='', help_text='Keys 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_custom_index',
+ field=models.TextField(blank=True, default='', help_text='Keys 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_custom_index',
+ field=models.TextField(blank=True, default='', help_text='Keys 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='site_custom_index',
+ field=models.TextField(blank=True, default='', help_text='Keys 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_custom_index',
+ field=models.TextField(blank=True, default='', help_text='Keys to be used to manage warehouse custom index. Separate keys with a semicolon.', verbose_name='Warehouse custom index key'),
+ ),
+ ]