18 lines
440 B
Python
18 lines
440 B
Python
# Generated by Django 4.2.2
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('toolshed', '0023_remove_storagelocation_storagelocation_unique_owner_scoped_id_and_more'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='workflowinstance',
|
|
name='current_step',
|
|
field=models.PositiveIntegerField(default=1),
|
|
),
|
|
]
|