diff --git a/mayan/apps/converter/migrations/0014_auto_20190626_1904.py b/mayan/apps/converter/migrations/0014_auto_20190626_1904.py deleted file mode 100644 index c71a5d0d43..0000000000 --- a/mayan/apps/converter/migrations/0014_auto_20190626_1904.py +++ /dev/null @@ -1,20 +0,0 @@ -# -*- 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 deleted file mode 100644 index 7ec8d00765..0000000000 --- a/mayan/apps/redactions/migrations/0001_initial.py +++ /dev/null @@ -1,29 +0,0 @@ -# -*- 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',), - ), - ]