combo/combo/apps/wcs/migrations/0027_careforms_categories.py

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

18 lines
402 B
Python
Raw Normal View History

from django.db import migrations
from django.db.models import JSONField
class Migration(migrations.Migration):
dependencies = [
('wcs', '0026_text_to_jsonb'),
]
operations = [
migrations.AddField(
model_name='wcscareformscell',
name='categories',
field=JSONField(blank=True, default=dict, verbose_name='Categories'),
),
]