Files
mayan-edms/mayan/apps/file_caching/migrations/0002_auto_20190729_0236.py
Roberto Rosario 3988dedebf Add missing migrations
Signed-off-by: Roberto Rosario <roberto.rosario@mayan-edms.com>
2019-07-28 22:36:51 -04:00

36 lines
1.2 KiB
Python

# -*- 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'),
),
]