Skip to content

Commit

Permalink
Updated migrations (missing for some reasons)
Browse files Browse the repository at this point in the history
  • Loading branch information
maubreville committed Oct 1, 2024
1 parent 8332ea8 commit 1537a51
Show file tree
Hide file tree
Showing 2 changed files with 42 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -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),
),
]
Original file line number Diff line number Diff line change
@@ -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),
),
]

0 comments on commit 1537a51

Please sign in to comment.