21 lines
601 B
Python
21 lines
601 B
Python
# 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=''),
|
|
),
|
|
]
|
|
|