# -*- coding: utf-8 -*-
# Generated by Django 1.11.20 on 2020-05-31 11:42
from __future__ import unicode_literals

from django.db import migrations, models


class Migration(migrations.Migration):

    dependencies = [
        ('iclock', '0010_auto_20200518_1717'),
    ]

    operations = [
        migrations.AlterField(
            model_name='transaction',
            name='punch_state',
            field=models.CharField(choices=[('0', 'transaction_punchState_checkIn'), ('1', 'transaction_punchState_checkOut'), ('2', 'transaction_punchState_breakOut'), ('3', 'transaction_punchState_breakIn'), ('4', 'transaction_punchState_overtimeIn'), ('5', 'transaction_punchState_overtimeOut')], default='0', max_length=5, verbose_name='transaction_field_punchState'),
        ),
    ]
