Skip to content

Commit

Permalink
Merge pull request #446 from Djailla/migration
Browse files Browse the repository at this point in the history
Add missing migration for django-picklefield
  • Loading branch information
Koed00 committed Jun 10, 2020
2 parents 81d5fea + ff4836f commit 142af91
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions django_q/migrations/0010_auto_20200610_0856.py
@@ -0,0 +1,27 @@
from django.db import migrations
import picklefield.fields


class Migration(migrations.Migration):

dependencies = [
('django_q', '0009_auto_20171009_0915'),
]

operations = [
migrations.AlterField(
model_name='task',
name='args',
field=picklefield.fields.PickledObjectField(editable=False, null=True, protocol=-1),
),
migrations.AlterField(
model_name='task',
name='kwargs',
field=picklefield.fields.PickledObjectField(editable=False, null=True, protocol=-1),
),
migrations.AlterField(
model_name='task',
name='result',
field=picklefield.fields.PickledObjectField(editable=False, null=True, protocol=-1),
),
]

0 comments on commit 142af91

Please sign in to comment.