mirror of
https://github.com/jazzband/django-eav2.git
synced 2026-04-10 02:11:00 +00:00
Update 0005 migration - Default to empty str instead of list
This commit is contained in:
parent
668caf39e3
commit
6d10892c20
1 changed files with 1 additions and 1 deletions
|
|
@ -14,7 +14,7 @@ class Migration(migrations.Migration):
|
|||
migrations.AddField(
|
||||
model_name='value',
|
||||
name='value_csv',
|
||||
field=eav.fields.CSVField(blank=True, default=[], null=True),
|
||||
field=eav.fields.CSVField(blank=True, default="", null=True),
|
||||
),
|
||||
migrations.AlterField(
|
||||
model_name='attribute',
|
||||
|
|
|
|||
Loading…
Reference in a new issue