From 1537a51d71af334b1390631ed6da8152ce21a9ac Mon Sep 17 00:00:00 2001 From: Marc Aubreville Date: Tue, 1 Oct 2024 21:45:00 +0200 Subject: [PATCH] Updated migrations (missing for some reasons) --- ...r_framedescription_description_and_more.py | 23 +++++++++++++++++++ ..._alter_pluginresultbitmap_location_rect.py | 19 +++++++++++++++ 2 files changed, 42 insertions(+) create mode 100644 exact/exact/images/migrations/0034_alter_framedescription_description_and_more.py create mode 100644 exact/exact/processing/migrations/0014_alter_pluginresultbitmap_location_rect.py diff --git a/exact/exact/images/migrations/0034_alter_framedescription_description_and_more.py b/exact/exact/images/migrations/0034_alter_framedescription_description_and_more.py new file mode 100644 index 00000000..b265b229 --- /dev/null +++ b/exact/exact/images/migrations/0034_alter_framedescription_description_and_more.py @@ -0,0 +1,23 @@ +# Generated by Django 4.2.11 on 2024-10-01 21:43 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('images', '0033_image_stack_setfilename'), + ] + + operations = [ + migrations.AlterField( + model_name='framedescription', + name='description', + field=models.CharField(max_length=160), + ), + migrations.AlterField( + model_name='framedescription', + name='file_path', + field=models.CharField(default='', max_length=320), + ), + ] diff --git a/exact/exact/processing/migrations/0014_alter_pluginresultbitmap_location_rect.py b/exact/exact/processing/migrations/0014_alter_pluginresultbitmap_location_rect.py new file mode 100644 index 00000000..48995f13 --- /dev/null +++ b/exact/exact/processing/migrations/0014_alter_pluginresultbitmap_location_rect.py @@ -0,0 +1,19 @@ +# Generated by Django 4.2.11 on 2024-10-01 21:43 + +from django.db import migrations, models +import exact.processing.models + + +class Migration(migrations.Migration): + + dependencies = [ + ('processing', '0013_pluginresultentry_default_threshold'), + ] + + operations = [ + migrations.AlterField( + model_name='pluginresultbitmap', + name='location_rect', + field=models.JSONField(default=exact.processing.models.default_rect, null=True), + ), + ]