Add missing migrations.
Signed-off-by: Roberto Rosario <roberto.rosario.gonzalez@gmail.com>
This commit is contained in:
22
mayan/apps/common/migrations/0010_auto_20180403_0702.py
Normal file
22
mayan/apps/common/migrations/0010_auto_20180403_0702.py
Normal file
@@ -0,0 +1,22 @@
|
||||
# -*- 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'),
|
||||
),
|
||||
]
|
||||
@@ -0,0 +1,22 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
# Generated by Django 1.11.11 on 2018-04-03 07:02
|
||||
from __future__ import unicode_literals
|
||||
|
||||
import django.core.files.storage
|
||||
from django.db import migrations, models
|
||||
import document_signatures.models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('document_signatures', '0006_auto_20160326_0616'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name='detachedsignature',
|
||||
name='signature_file',
|
||||
field=models.FileField(blank=True, null=True, storage=django.core.files.storage.FileSystemStorage(location=b'mayan/media/document_storage'), upload_to=document_signatures.models.upload_to, verbose_name='Signature file'),
|
||||
),
|
||||
]
|
||||
22
mayan/apps/documents/migrations/0042_auto_20180403_0702.py
Normal file
22
mayan/apps/documents/migrations/0042_auto_20180403_0702.py
Normal file
@@ -0,0 +1,22 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
# Generated by Django 1.11.11 on 2018-04-03 07:02
|
||||
from __future__ import unicode_literals
|
||||
|
||||
import django.core.files.storage
|
||||
from django.db import migrations, models
|
||||
import documents.models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('documents', '0041_auto_20170823_1855'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name='documentversion',
|
||||
name='file',
|
||||
field=models.FileField(storage=django.core.files.storage.FileSystemStorage(location=b'mayan/media/document_storage'), upload_to=documents.models.UUID_FUNCTION, verbose_name='File'),
|
||||
),
|
||||
]
|
||||
Reference in New Issue
Block a user