Files
mayan-edms/mayan/apps/document_states/migrations/0002_workflowstate_completion.py
2018-12-06 16:38:24 -04:00

25 lines
681 B
Python

from __future__ import unicode_literals
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('document_states', '0001_initial'),
]
operations = [
migrations.AddField(
model_name='workflowstate',
name='completion',
field=models.IntegerField(
blank=True, default=0, help_text='Enter the percent of '
'completion that this state represents in relation to the '
'workflow. Use numbers without the percent sign.',
verbose_name='Completion',
),
preserve_default=True,
),
]