From 5973cbc5a2039b5136437e0da7504fb9bcfcef99 Mon Sep 17 00:00:00 2001 From: Malte Finsterwalder <malte@holi.team> Date: Thu, 27 Mar 2025 09:48:41 +0100 Subject: [PATCH] NOISSUE add missing migration --- ..._postimage_height_alter_postimage_width.py | 23 +++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 openbook_posts/migrations/0032_alter_postimage_height_alter_postimage_width.py diff --git a/openbook_posts/migrations/0032_alter_postimage_height_alter_postimage_width.py b/openbook_posts/migrations/0032_alter_postimage_height_alter_postimage_width.py new file mode 100644 index 000000000..9ed723d40 --- /dev/null +++ b/openbook_posts/migrations/0032_alter_postimage_height_alter_postimage_width.py @@ -0,0 +1,23 @@ +# Generated by Django 5.1.7 on 2025-03-27 08:47 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ("openbook_posts", "0031_alter_postimage_height_alter_postimage_width"), + ] + + operations = [ + migrations.AlterField( + model_name="postimage", + name="height", + field=models.PositiveIntegerField(editable=False, null=True), + ), + migrations.AlterField( + model_name="postimage", + name="width", + field=models.PositiveIntegerField(editable=False, null=True), + ), + ] -- GitLab