# -*- coding: utf-8 -*- # Generated by Django 1.11.11 on 2018-04-03 07:02 from __future__ import unicode_literals import common.models import django.core.files.storage from django.db import migrations, models class Migration(migrations.Migration): dependencies = [ ('common', '0009_auto_20180402_0339'), ] operations = [ migrations.AlterField( model_name='shareduploadedfile', name='file', field=models.FileField(storage=django.core.files.storage.FileSystemStorage(location=b'mayan/media/shared_files'), upload_to=common.models.upload_to, verbose_name='File'), ), ]