1 2 3 4 5 6
from django.db import models class CustomTypedField(models.TextField): def db_type(self, connection): return 'custom_field'