diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2025-02-12 11:21:56 +0100 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2025-02-19 14:45:57 +0100 |
commit | 17d286b114f003c4dbf7865d668ab41b63bcec4f (patch) | |
tree | 64147de58a77abb71409fb5b1e71a61b9405512c /archaeological_finds/migrations | |
parent | 7313642f0ebcdfc83cc1d28906e618489594e8a9 (diff) | |
download | Ishtar-17d286b114f003c4dbf7865d668ab41b63bcec4f.tar.bz2 Ishtar-17d286b114f003c4dbf7865d668ab41b63bcec4f.zip |
✨ exhibtion: add description field - basket sheet: display associated exhibitions
Diffstat (limited to 'archaeological_finds/migrations')
-rw-r--r-- | archaeological_finds/migrations/0135_exhibition_description.py | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/archaeological_finds/migrations/0135_exhibition_description.py b/archaeological_finds/migrations/0135_exhibition_description.py new file mode 100644 index 000000000..5e8444685 --- /dev/null +++ b/archaeological_finds/migrations/0135_exhibition_description.py @@ -0,0 +1,23 @@ +# Generated by Django 2.2.24 on 2025-02-12 11:04 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('archaeological_finds', '0134_other_reference_rename_find_treatment_imports'), + ] + + operations = [ + migrations.AddField( + model_name='exhibition', + name='description', + field=models.TextField(blank=True, default='', verbose_name='Description'), + ), + migrations.AddField( + model_name='historicalexhibition', + name='description', + field=models.TextField(blank=True, default='', verbose_name='Description'), + ), + ] |