# -*- coding: utf-8 -*- # Generated by Django 1.11.7 on 2018-02-19 19:46 from __future__ import unicode_literals from django.db import migrations, models class Migration(migrations.Migration): dependencies = [ ('app', '0016_public_task_uuids'), ] operations = [ migrations.AddField( model_name='task', name='resize_to', field=models.IntegerField(default=-1, help_text='When set to a value different than -1, indicates that the images for this task have been / will be resized to the size specified here before processing.'), ), migrations.AlterField( model_name='task', name='pending_action', field=models.IntegerField(blank=True, choices=[(1, 'CANCEL'), (2, 'REMOVE'), (3, 'RESTART'), (4, 'RESIZE')], db_index=True, help_text='A requested action to be performed on the task. The selected action will be performed by the worker at the next iteration.', null=True), ), ]