25 lines
681 B
Python
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,
|
|
),
|
|
]
|