django-constance/constance/backends/database/migrations/0002_auto_20190129_2304.py
Tyler Kennedy 5e422cfd54 Allow null & blank for PickleField. (#315)
The default behaviour of PickleField was changed from null=True to
null=False. This causes issues with fields such as an image_field which
will try storing a NULL when unset.
2019-03-16 09:47:43 -05:00

19 lines
441 B
Python

# Generated by Django 2.1.5 on 2019-01-30 04:04
from django.db import migrations
import picklefield.fields
class Migration(migrations.Migration):
dependencies = [
('database', '0001_initial'),
]
operations = [
migrations.AlterField(
model_name='constance',
name='value',
field=picklefield.fields.PickledObjectField(blank=True, editable=False, null=True),
),
]