From fad2f663ee730d63af0c49bce0fce968f0dabe4b Mon Sep 17 00:00:00 2001
From: Ernesto Rico Schmidt <ernesto@helsinki.at>
Date: Wed, 3 Aug 2022 17:33:04 -0400
Subject: [PATCH] Migrate Show model

---
 program/migrations/0033_auto_20220803_2331.py | 51 +++++++++++++++++++
 1 file changed, 51 insertions(+)
 create mode 100644 program/migrations/0033_auto_20220803_2331.py

diff --git a/program/migrations/0033_auto_20220803_2331.py b/program/migrations/0033_auto_20220803_2331.py
new file mode 100644
index 00000000..2fd4b3ec
--- /dev/null
+++ b/program/migrations/0033_auto_20220803_2331.py
@@ -0,0 +1,51 @@
+# Generated by Django 3.2.14 on 2022-08-03 21:31
+
+import versatileimagefield.fields
+
+from django.db import migrations, models
+
+
+class Migration(migrations.Migration):
+
+    dependencies = [
+        ("program", "0032_auto_20220803_2312"),
+    ]
+
+    operations = [
+        migrations.RenameField(
+            model_name="show",
+            old_name="height",
+            new_name="image_height",
+        ),
+        migrations.RenameField(
+            model_name="show",
+            old_name="ppoi",
+            new_name="image_ppoi",
+        ),
+        migrations.RenameField(
+            model_name="show",
+            old_name="width",
+            new_name="image_width",
+        ),
+        migrations.AddField(
+            model_name="show",
+            name="image_alt_text",
+            field=models.TextField(blank=True, null=True),
+        ),
+        migrations.AddField(
+            model_name="show",
+            name="image_credits",
+            field=models.TextField(blank=True, null=True),
+        ),
+        migrations.AlterField(
+            model_name="show",
+            name="image",
+            field=versatileimagefield.fields.VersatileImageField(
+                blank=True,
+                height_field="image_height",
+                null=True,
+                upload_to="images",
+                width_field="image_width",
+            ),
+        ),
+    ]
-- 
GitLab