combo/combo/apps/wcs/migrations/0018_wcscurrentdraftscell_c...

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

18 lines
409 B
Python
Raw Normal View History

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