From ddc82a4f466f7c44d1272b021d2993f868fbe17e Mon Sep 17 00:00:00 2001 From: Étienne Loks Date: Wed, 29 Jan 2020 19:47:53 +0100 Subject: New version for django-simple-history --- .../migrations/0103_auto_20200129_1944.py | 35 ++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 archaeological_finds/migrations/0103_auto_20200129_1944.py (limited to 'archaeological_finds') diff --git a/archaeological_finds/migrations/0103_auto_20200129_1944.py b/archaeological_finds/migrations/0103_auto_20200129_1944.py new file mode 100644 index 000000000..533094bde --- /dev/null +++ b/archaeological_finds/migrations/0103_auto_20200129_1944.py @@ -0,0 +1,35 @@ +# -*- coding: utf-8 -*- +# Generated by Django 1.11.27 on 2020-01-29 19:44 +from __future__ import unicode_literals + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('archaeological_finds', '0102_link_apps'), + ] + + operations = [ + migrations.AddField( + model_name='historicalbasefind', + name='history_change_reason', + field=models.CharField(max_length=100, null=True), + ), + migrations.AddField( + model_name='historicalfind', + name='history_change_reason', + field=models.CharField(max_length=100, null=True), + ), + migrations.AddField( + model_name='historicaltreatment', + name='history_change_reason', + field=models.CharField(max_length=100, null=True), + ), + migrations.AddField( + model_name='historicaltreatmentfile', + name='history_change_reason', + field=models.CharField(max_length=100, null=True), + ), + ] -- cgit v1.2.3