Add missing migrations
Signed-off-by: Roberto Rosario <roberto.rosario@mayan-edms.com>
This commit is contained in:
20
mayan/apps/cabinets/migrations/0002_auto_20190729_0236.py
Normal file
20
mayan/apps/cabinets/migrations/0002_auto_20190729_0236.py
Normal file
@@ -0,0 +1,20 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
# Generated by Django 1.11.22 on 2019-07-29 02:36
|
||||
from __future__ import unicode_literals
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('cabinets', '0001_initial'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name='cabinet',
|
||||
name='label',
|
||||
field=models.CharField(help_text='A short text used to identify the cabinet.', max_length=128, verbose_name='Label'),
|
||||
),
|
||||
]
|
||||
@@ -0,0 +1,35 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
# Generated by Django 1.11.22 on 2019-07-29 02:36
|
||||
from __future__ import unicode_literals
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('file_caching', '0001_initial'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name='cache',
|
||||
name='label',
|
||||
field=models.CharField(help_text='A short text describing the cache.', max_length=128, verbose_name='Label'),
|
||||
),
|
||||
migrations.AlterField(
|
||||
model_name='cache',
|
||||
name='maximum_size',
|
||||
field=models.PositiveIntegerField(help_text='Maximum size of the cache in bytes.', verbose_name='Maximum size'),
|
||||
),
|
||||
migrations.AlterField(
|
||||
model_name='cache',
|
||||
name='name',
|
||||
field=models.CharField(help_text='Internal name of the cache.', max_length=128, unique=True, verbose_name='Name'),
|
||||
),
|
||||
migrations.AlterField(
|
||||
model_name='cache',
|
||||
name='storage_instance_path',
|
||||
field=models.CharField(help_text='Dotted path to the actual storage class used for the cache.', max_length=255, unique=True, verbose_name='Storage instance path'),
|
||||
),
|
||||
]
|
||||
Reference in New Issue
Block a user