summaryrefslogtreecommitdiff
path: root/archaeological_finds/migrations/0076_treatmentfile_change_txt_idx.py
diff options
context:
space:
mode:
Diffstat (limited to 'archaeological_finds/migrations/0076_treatmentfile_change_txt_idx.py')
-rw-r--r--archaeological_finds/migrations/0076_treatmentfile_change_txt_idx.py18
1 files changed, 18 insertions, 0 deletions
diff --git a/archaeological_finds/migrations/0076_treatmentfile_change_txt_idx.py b/archaeological_finds/migrations/0076_treatmentfile_change_txt_idx.py
new file mode 100644
index 000000000..0cc48d047
--- /dev/null
+++ b/archaeological_finds/migrations/0076_treatmentfile_change_txt_idx.py
@@ -0,0 +1,18 @@
+# -*- coding: utf-8 -*-
+# Generated by Django 1.11.18 on 2019-09-16 18:47
+from __future__ import unicode_literals
+
+from django.db import migrations
+
+
+class Migration(migrations.Migration):
+
+ dependencies = [
+ ('archaeological_finds', '0075_auto_20190916_1822'),
+ ]
+
+ operations = [
+ migrations.RunSQL("""UPDATE archaeological_finds_treatmentfiletype
+ SET txt_idx='loan-for-exhibition' WHERE txt_idx='loan_demand_exposure'
+ """)
+ ]