stash
This commit is contained in:
parent
cfcc2c15d3
commit
4f2fe011c0
28 changed files with 3499 additions and 2922 deletions
|
|
@ -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=''),
|
||||
),
|
||||
]
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue