# -*- 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 = [
        ('att', '0011_auto_20200518_1717'),
    ]

    operations = [
        migrations.AlterField(
            model_name='payloadpunch',
            name='correct_state',
            field=models.CharField(blank=True, 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'), ('255', 'transaction_punchState_noStatus')], max_length=3, null=True),
        ),
    ]
