# -*- coding: utf-8 -*-
# Generated by Django 1.11.29 on 2021-04-14 18:04
from __future__ import unicode_literals

import django.core.files.storage
from django.db import migrations, models
import mysite.cloud.models.model_company
import mysite.personnel.models.model_employee


class Migration(migrations.Migration):

    dependencies = [
        ('personnel', '0019_auto_20210209_1140'),
    ]

    operations = [
        migrations.AddField(
            model_name='company',
            name='parent_vendor_company_logo',
            field=models.ImageField(blank=True, max_length=200, null=True, storage=django.core.files.storage.FileSystemStorage(location='mysite\\media'), upload_to=mysite.cloud.models.model_company.upload_parent_vendor_company_logo_path_handler, verbose_name='company_field_parent_vendor_company_logo'),
        ),
        migrations.AddField(
            model_name='company',
            name='parent_vendor_software_logo',
            field=models.ImageField(blank=True, max_length=200, null=True, storage=django.core.files.storage.FileSystemStorage(location='mysite\\media'), upload_to=mysite.cloud.models.model_company.upload_parent_vendor_software_logo_path_handler, verbose_name='company_field_parent_vendor_software_logo'),
        ),
        migrations.AlterField(
            model_name='employee',
            name='id',
            field=models.CharField(default=mysite.personnel.models.model_employee.zk_uuid, editable=False, max_length=36, primary_key=True, serialize=False),
        ),
    ]
