# -*- coding: utf-8 -*-
# Generated by Django 1.11.29 on 2022-04-22 14:47
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_certification


class Migration(migrations.Migration):

    dependencies = [
        ('personnel', '0023_auto_20220304_1514'),
    ]

    operations = [
        migrations.AddField(
            model_name='employeecertification',
            name='file',
            field=models.FileField(blank=True, max_length=200, null=True, storage=django.core.files.storage.FileSystemStorage(location='files'), upload_to=mysite.personnel.models.model_employee_certification.upload_path_handler, verbose_name='employeeCert_field_file'),
        ),
        migrations.AddField(
            model_name='employeecertification',
            name='file_name',
            field=models.CharField(blank=True, max_length=200, null=True, verbose_name='employeeCert_field_fileName'),
        ),
    ]
