django1/django/contrib/postgres/fields/citext.py

9 lines
157 B
Python

from django.db.models import CharField
__all__ = ['CITextField']
class CITextField(CharField):
def db_type(self, connection):
return 'citext'