combo/combo/apps/wcs/migrations/0008_wcsformcell_cached_jso...

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

19 lines
414 B
Python
Raw Normal View History

from django.db import migrations
from django.db.models import JSONField
2015-05-21 09:40:51 +02:00
class Migration(migrations.Migration):
dependencies = [
('wcs', '0007_trackingcodeinputcell'),
]
operations = [
migrations.AddField(
model_name='wcsformcell',
name='cached_json',
field=JSONField(default=dict, blank=True),
2015-05-21 09:40:51 +02:00
preserve_default=True,
),
]