EVOLUTION-MANAGER
Edit File: fields.py
# # NOTE: This file is deprecated, but due to being referenced in evolutions # and other places, we do not warn in this file. We also must keep # this file around for JSONField, CounterField, Base64Field, and # ModificationTimestampField indefinitely. # from __future__ import unicode_literals from djblets.db.fields import (Base64DecodedValue, Base64Field, Base64FieldCreator, CounterField, JSONField, ModificationTimestampField) from djblets.db.validators import validate_json __all__ = [ 'Base64DecodedValue', 'Base64Field', 'Base64FieldCreator', 'CounterField', 'JSONField', 'ModificationTimestampField', 'validate_json', ]