mirror of
https://github.com/jazzband/django-constance.git
synced 2026-05-11 09:03:13 +00:00
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.
19 lines
441 B
Python
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),
|
|
),
|
|
]
|