-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(model): add
status_skipped
to possible workitem
states
- Loading branch information
David Vogt
committed
Oct 31, 2019
1 parent
2d06f9d
commit c3d99bc
Showing
3 changed files
with
46 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
# Generated by Django 2.2.6 on 2019-10-31 12:22 | ||
|
||
from django.db import migrations | ||
|
||
import caluma.core.models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [("workflow", "0014_add_gin_index_to_jsonfields")] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name="historicalworkitem", | ||
name="status", | ||
field=caluma.core.models.ChoicesCharField( | ||
choices=[ | ||
("ready", "Task is ready to be processed."), | ||
("completed", "Task is done."), | ||
("canceled", "Task is cancelled."), | ||
("skipped", "Task is skipped."), | ||
], | ||
db_index=True, | ||
max_length=50, | ||
), | ||
), | ||
migrations.AlterField( | ||
model_name="workitem", | ||
name="status", | ||
field=caluma.core.models.ChoicesCharField( | ||
choices=[ | ||
("ready", "Task is ready to be processed."), | ||
("completed", "Task is done."), | ||
("canceled", "Task is cancelled."), | ||
("skipped", "Task is skipped."), | ||
], | ||
db_index=True, | ||
max_length=50, | ||
), | ||
), | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters