diff options
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 |
commit | aee4cf8060b9ce4daee5408a760ec20ae5494cd4 (patch) | |
tree | f32a70aaa7a3c320c089340a7e5de88b2769f62c /archaeological_context_records | |
parent | 2f1cc9c16f8fadb7793a4f459e3cf391781bf2fe (diff) | |
download | Ishtar-aee4cf8060b9ce4daee5408a760ec20ae5494cd4.tar.bz2 Ishtar-aee4cf8060b9ce4daee5408a760ec20ae5494cd4.zip |
Update migrations
Diffstat (limited to 'archaeological_context_records')
-rw-r--r-- | archaeological_context_records/migrations/0005_auto_20170802_1557.py | 38 |
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), + ), + ] |