From d2b024d7ecc5323aa9a35553091fb53f4e737e6c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20P=C3=A9ters?= Date: Fri, 10 Aug 2018 10:06:04 +0200 Subject: [PATCH] wcs: update migration with new verbose_name (#25886) --- .../apps/wcs/migrations/0015_wcscurrentformscell_categories.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/combo/apps/wcs/migrations/0015_wcscurrentformscell_categories.py b/combo/apps/wcs/migrations/0015_wcscurrentformscell_categories.py index cdd6224c..ec5c3c42 100644 --- a/combo/apps/wcs/migrations/0015_wcscurrentformscell_categories.py +++ b/combo/apps/wcs/migrations/0015_wcscurrentformscell_categories.py @@ -16,6 +16,6 @@ class Migration(migrations.Migration): migrations.AddField( model_name='wcscurrentformscell', name='categories', - field=jsonfield.fields.JSONField(blank=True, default=dict), + field=jsonfield.fields.JSONField(blank=True, default=dict, verbose_name='Categories'), ), ]