# Copyright © Fundacja Nowoczesna Polska. See NOTICE for more information.
#
from django.db import models, migrations
-import picklefield.fields
class Migration(migrations.Migration):
('id', models.AutoField(verbose_name='ID', serialize=False, auto_created=True, primary_key=True)),
('path', models.CharField(unique=True, max_length=255, db_index=True)),
('task_id', models.CharField(db_index=True, max_length=128, null=True, blank=True)),
- ('task', picklefield.fields.PickledObjectField(null=True, editable=False)),
+ ('task', models.TextField(null=True, editable=False)),
('description', models.CharField(max_length=255, null=True, blank=True)),
],
options={