私は(部分的に)次のように見えるDjangoで定義されたモデルを持っています:
class Info(models.Model):
information = models.TextField(max_length = 32, null = True, db_index = True)
ただし、syncdb
MySqlバックエンドを試してみると、Failed to install index for app.Info model: (1170, "BLOB/TEXT column 'information' used in key specification without a key length")
どうすればこれを修正できますか?