# -*- coding: utf-8 -*-
# Generated by Django 1.11.29 on 2021-04-27 16:36
from __future__ import unicode_literals

from django.db import migrations, models


class Migration(migrations.Migration):

    dependencies = [
        ('personnel', '0020_auto_20210414_1804'),
    ]

    operations = [
        migrations.AddField(
            model_name='employee',
            name='app_punch_status',
            field=models.SmallIntegerField(blank=True, choices=[(1, 'employee_appPunchStatusOption_enable'), (0, 'employee_appPunchStatusOption_disable')], default=1, null=True, verbose_name='emp_field_appPunchStatus'),
        ),
    ]
