Files
mayan-edms/mayan/apps/document_states/migrations/0002_workflowstate_completion.py
2015-09-16 09:33:16 -04:00

26 lines
704 B
Python

# -*- coding: utf-8 -*-
from __future__ import unicode_literals
from django.db import models, migrations
class Migration(migrations.Migration):
dependencies = [
('document_states', '0001_initial'),
]
operations = [
migrations.AddField(
model_name='workflowstate',
name='completion',
field=models.IntegerField(
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',
blank=True
),
preserve_default=True,
),
]