Fixed #21196 -- Removed index on test field causing MySQL specific warning.

This commit is contained in:
Thomas Chaumeny 2014-10-19 02:27:31 +02:00 committed by Loic Bistuer
parent c1b9f99a81
commit 825ea83858
1 changed files with 2 additions and 1 deletions

View File

@ -654,7 +654,8 @@ class PrePopulatedPostLargeSlug(models.Model):
"""
title = models.CharField(max_length=100)
published = models.BooleanField(default=False)
slug = models.SlugField(max_length=1000)
# `db_index=False` because MySQL cannot index large CharField (#21196).
slug = models.SlugField(max_length=1000, db_index=False)
class AdminOrderedField(models.Model):