# -*- coding: utf-8 -*-
# Generated by Django 1.11.20 on 2020-02-27 17:49
from __future__ import unicode_literals

from django.db import migrations, models


class Migration(migrations.Migration):

    dependencies = [
        ('workflow', '0002_auto_20200118_0913'),
    ]

    operations = [
        migrations.AlterField(
            model_name='workflowengine',
            name='workflow_code',
            field=models.CharField(error_messages={'unique': 'WorkFlow with this Flow Code already Exists'}, max_length=50, unique=True, verbose_name='workflowEngine_field_code'),
        ),
    ]
