summaryrefslogtreecommitdiff
path: root/archaeological_context_records
diff options
context:
space:
mode:
Diffstat (limited to 'archaeological_context_records')
-rw-r--r--archaeological_context_records/migrations/0103_historicalcontextrecord_history_change_reason.py20
1 files changed, 20 insertions, 0 deletions
diff --git a/archaeological_context_records/migrations/0103_historicalcontextrecord_history_change_reason.py b/archaeological_context_records/migrations/0103_historicalcontextrecord_history_change_reason.py
new file mode 100644
index 000000000..9d2f8ab29
--- /dev/null
+++ b/archaeological_context_records/migrations/0103_historicalcontextrecord_history_change_reason.py
@@ -0,0 +1,20 @@
+# -*- coding: utf-8 -*-
+# Generated by Django 1.11.27 on 2020-01-29 19:45
+from __future__ import unicode_literals
+
+from django.db import migrations, models
+
+
+class Migration(migrations.Migration):
+
+ dependencies = [
+ ('archaeological_context_records', '0102_link_apps'),
+ ]
+
+ operations = [
+ migrations.AddField(
+ model_name='historicalcontextrecord',
+ name='history_change_reason',
+ field=models.CharField(max_length=100, null=True),
+ ),
+ ]