This commit is contained in:
j3d1 2026-08-01 22:20:45 +02:00
parent cfcc2c15d3
commit 4f2fe011c0
28 changed files with 3499 additions and 2922 deletions

View file

@ -0,0 +1,21 @@
# Generated manually: WorkflowInstance.payload changes from a native JSONField
# to a plain opaque TextField. The frontend now serializes/deserializes the
# JSON itself; the backend just stores whatever string it receives.
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('toolshed', '0008_alter_inventoryitem_storage_location'),
]
operations = [
migrations.AlterField(
model_name='workflowinstance',
name='payload',
field=models.TextField(blank=True, default=''),
),
]