# -*- coding: utf-8 -*-
# Generated by Django 1.11.20 on 2020-03-30 19:02
from __future__ import unicode_literals

from django.db import migrations


class Migration(migrations.Migration):

    dependencies = [
        ('personnel', '0009_auto_20200323_1438'),
    ]

    operations = [
        migrations.AlterUniqueTogether(
            name='area',
            unique_together=set([('area_code', 'company')]),
        ),
        migrations.AlterUniqueTogether(
            name='department',
            unique_together=set([('dept_code', 'company')]),
        ),
        migrations.AlterUniqueTogether(
            name='employee',
            unique_together=set([('emp_code', 'company')]),
        ),
        migrations.AlterUniqueTogether(
            name='position',
            unique_together=set([('position_code', 'company')]),
        ),
    ]
