diff options
Diffstat (limited to 'archaeological_finds/migrations')
-rw-r--r-- | archaeological_finds/migrations/0126_fix_treatment_file_exhibition.py | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/archaeological_finds/migrations/0126_fix_treatment_file_exhibition.py b/archaeological_finds/migrations/0126_fix_treatment_file_exhibition.py new file mode 100644 index 000000000..f9d252e0d --- /dev/null +++ b/archaeological_finds/migrations/0126_fix_treatment_file_exhibition.py @@ -0,0 +1,21 @@ +# Generated by Django 2.2.24 on 2024-07-09 11:11 + +from django.db import migrations + + +SQL = """ +UPDATE archaeological_finds_treatmentfiletype + SET txt_idx='loan-for-exhibition' + WHERE txt_idx='loan_demand_exposure' +""" + + +class Migration(migrations.Migration): + + dependencies = [ + ('archaeological_finds', '0125_data_migration_communicability_functionalarea'), + ] + + operations = [ + migrations.RunSQL(SQL) + ] |