summaryrefslogtreecommitdiff
path: root/archaeological_context_records
diff options
context:
space:
mode:
authorÉtienne Loks <etienne.loks@iggdrasil.net>2017-08-02 16:15:24 +0200
committerÉtienne Loks <etienne.loks@iggdrasil.net>2017-08-02 16:15:24 +0200
commitfa49ba8090b2167c1a48a11a894a99306343938b (patch)
treef32a70aaa7a3c320c089340a7e5de88b2769f62c /archaeological_context_records
parent3179827ef6701abb538a8942cdd5c390685e486d (diff)
downloadIshtar-fa49ba8090b2167c1a48a11a894a99306343938b.tar.bz2
Ishtar-fa49ba8090b2167c1a48a11a894a99306343938b.zip
Update migrations
Diffstat (limited to 'archaeological_context_records')
-rw-r--r--archaeological_context_records/migrations/0005_auto_20170802_1557.py38
1 files changed, 38 insertions, 0 deletions
diff --git a/archaeological_context_records/migrations/0005_auto_20170802_1557.py b/archaeological_context_records/migrations/0005_auto_20170802_1557.py
new file mode 100644
index 000000000..3e4f9028b
--- /dev/null
+++ b/archaeological_context_records/migrations/0005_auto_20170802_1557.py
@@ -0,0 +1,38 @@
+# -*- coding: utf-8 -*-
+from __future__ import unicode_literals
+
+from django.db import models, migrations
+
+
+class Migration(migrations.Migration):
+
+ dependencies = [
+ ('archaeological_context_records', '0004_views'),
+ ]
+
+ operations = [
+ migrations.AlterModelOptions(
+ name='contextrecord',
+ options={'ordering': ('cached_label',), 'verbose_name': 'Context Record', 'verbose_name_plural': 'Context Record', 'permissions': (('view_contextrecord', 'Can view all Context Records'), ('view_own_contextrecord', 'Can view own Context Record'), ('add_own_contextrecord', 'Can add own Context Record'), ('change_own_contextrecord', 'Can change own Context Record'), ('delete_own_contextrecord', 'Can delete own Context Record'))},
+ ),
+ migrations.AlterField(
+ model_name='contextrecord',
+ name='closing_date',
+ field=models.DateField(null=True, verbose_name='Closing date', blank=True),
+ ),
+ migrations.AlterField(
+ model_name='contextrecord',
+ name='opening_date',
+ field=models.DateField(null=True, verbose_name='Opening date', blank=True),
+ ),
+ migrations.AlterField(
+ model_name='historicalcontextrecord',
+ name='closing_date',
+ field=models.DateField(null=True, verbose_name='Closing date', blank=True),
+ ),
+ migrations.AlterField(
+ model_name='historicalcontextrecord',
+ name='opening_date',
+ field=models.DateField(null=True, verbose_name='Opening date', blank=True),
+ ),
+ ]