Files
mayan-edms/mayan/apps/common/migrations/0010_auto_20180403_0702.py
Roberto Rosario 4baeb6ce7e Code cleanups
PEP8 cleanups. Add keyword arguments.

Signed-off-by: Roberto Rosario <roberto.rosario.gonzalez@gmail.com>
2019-05-21 00:56:22 -04:00

26 lines
679 B
Python

from __future__ import unicode_literals
import mayan.apps.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=mayan.apps.common.models.upload_to,
verbose_name='File'
),
),
]