From fa49ba8090b2167c1a48a11a894a99306343938b Mon Sep 17 00:00:00 2001 From: Étienne Loks Date: Wed, 2 Aug 2017 16:15:24 +0200 Subject: Update migrations --- .../migrations/0005_auto_20170802_1557.py | 38 ++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 archaeological_context_records/migrations/0005_auto_20170802_1557.py (limited to 'archaeological_context_records') 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), + ), + ] -- cgit v1.2.3