diff --git a/mayan/apps/converter/migrations/0014_auto_20190626_1904.py b/mayan/apps/converter/migrations/0014_auto_20190626_1904.py new file mode 100644 index 0000000000..c71a5d0d43 --- /dev/null +++ b/mayan/apps/converter/migrations/0014_auto_20190626_1904.py @@ -0,0 +1,20 @@ +# -*- coding: utf-8 -*- +# Generated by Django 1.11.20 on 2019-06-26 19:04 +from __future__ import unicode_literals + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('converter', '0013_auto_20180823_2353'), + ] + + operations = [ + migrations.AlterField( + model_name='transformation', + name='name', + field=models.CharField(choices=[('crop', 'Crop: left, top, right, bottom'), ('draw_rectangle', 'Draw rectangle: left, top, right, bottom, fillcolor, outlinecolor, outlinewidth'), ('draw_rectangle_percent', 'Draw rectangle (percents coordinates): left, top, right, bottom, fillcolor, outlinecolor, outlinewidth'), ('flip', 'Flip'), ('gaussianblur', 'Gaussian blur: radius'), ('lineart', 'Line art'), ('mirror', 'Mirror'), ('resize', 'Resize: width, height'), ('rotate', 'Rotate: degrees, fillcolor'), ('rotate180', 'Rotate 180 degrees'), ('rotate270', 'Rotate 270 degrees'), ('rotate90', 'Rotate 90 degrees'), ('unsharpmask', 'Unsharp masking: radius, percent, threshold'), ('zoom', 'Zoom: percent')], max_length=128, verbose_name='Name'), + ), + ] diff --git a/mayan/apps/redactions/migrations/0001_initial.py b/mayan/apps/redactions/migrations/0001_initial.py new file mode 100644 index 0000000000..7ec8d00765 --- /dev/null +++ b/mayan/apps/redactions/migrations/0001_initial.py @@ -0,0 +1,29 @@ +# -*- coding: utf-8 -*- +# Generated by Django 1.11.20 on 2019-06-26 19:04 +from __future__ import unicode_literals + +from django.db import migrations + + +class Migration(migrations.Migration): + + initial = True + + dependencies = [ + ('converter', '0014_auto_20190626_1904'), + ] + + operations = [ + migrations.CreateModel( + name='Redaction', + fields=[ + ], + options={ + 'verbose_name': 'Redaction', + 'proxy': True, + 'verbose_name_plural': 'Redactions', + 'indexes': [], + }, + bases=('converter.transformation',), + ), + ] diff --git a/mayan/apps/redactions/migrations/__init__.py b/mayan/apps/redactions/migrations/__init__.py new file mode 100644 index 0000000000..e69de29bb2