From a73a0bad9334fb5d65e4ffd1eb7d65a2f189abc6 Mon Sep 17 00:00:00 2001 From: Étienne Loks Date: Tue, 13 Feb 2024 16:50:15 +0100 Subject: 🗃️ Context record - identification type changes to hierarchical (refs #5739) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../migrations/0115_auto_20240213_1640.py | 24 ++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 archaeological_context_records/migrations/0115_auto_20240213_1640.py (limited to 'archaeological_context_records/migrations') diff --git a/archaeological_context_records/migrations/0115_auto_20240213_1640.py b/archaeological_context_records/migrations/0115_auto_20240213_1640.py new file mode 100644 index 000000000..9780581cb --- /dev/null +++ b/archaeological_context_records/migrations/0115_auto_20240213_1640.py @@ -0,0 +1,24 @@ +# Generated by Django 2.2.24 on 2024-02-13 16:40 + +from django.db import migrations, models +import django.db.models.deletion + + +class Migration(migrations.Migration): + + dependencies = [ + ('archaeological_context_records', '0114_contextrecord_imports_updated'), + ] + + operations = [ + migrations.AddField( + model_name='identificationtype', + name='parent', + field=models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.SET_NULL, to='archaeological_context_records.IdentificationType', verbose_name='Parent'), + ), + migrations.AlterField( + model_name='identificationtype', + name='order', + field=models.IntegerField(default=10, verbose_name='Order'), + ), + ] -- cgit v1.2.3