blob: f9d252e0d8298892ffac2d1201c88ee7cea668b7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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)
]
|