diff --git a/mayan/apps/cabinets/migrations/0002_auto_20190729_0236.py b/mayan/apps/cabinets/migrations/0002_auto_20190729_0236.py new file mode 100644 index 0000000000..415e3eb0fa --- /dev/null +++ b/mayan/apps/cabinets/migrations/0002_auto_20190729_0236.py @@ -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'), + ), + ] diff --git a/mayan/apps/file_caching/migrations/0002_auto_20190729_0236.py b/mayan/apps/file_caching/migrations/0002_auto_20190729_0236.py new file mode 100644 index 0000000000..86643859fb --- /dev/null +++ b/mayan/apps/file_caching/migrations/0002_auto_20190729_0236.py @@ -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'), + ), + ]